diff --git a/java/buildconf/ivy/ivy-suse.xml b/java/buildconf/ivy/ivy-suse.xml index 4207fc7803df..0dca994c5b1b 100644 --- a/java/buildconf/ivy/ivy-suse.xml +++ b/java/buildconf/ivy/ivy-suse.xml @@ -143,7 +143,6 @@ - diff --git a/java/code/src/com/redhat/rhn/GlobalInstanceHolder.java b/java/code/src/com/redhat/rhn/GlobalInstanceHolder.java index 4a3de4665f41..0869937ead11 100644 --- a/java/code/src/com/redhat/rhn/GlobalInstanceHolder.java +++ b/java/code/src/com/redhat/rhn/GlobalInstanceHolder.java @@ -28,7 +28,6 @@ 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; @@ -62,7 +61,6 @@ 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); @@ -79,9 +77,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, PAYG_MANAGER); + new RegularMinionBootstrapper(SYSTEM_QUERY, SALT_API); public static final SSHMinionBootstrapper SSH_MINION_BOOTSTRAPPER = - new SSHMinionBootstrapper(SYSTEM_QUERY, SALT_API, PAYG_MANAGER); + new SSHMinionBootstrapper(SYSTEM_QUERY, SALT_API); 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/hibernate/AnnotationRegistry.java b/java/code/src/com/redhat/rhn/common/hibernate/AnnotationRegistry.java index 562c4f951035..1c2e77ab8de4 100644 --- a/java/code/src/com/redhat/rhn/common/hibernate/AnnotationRegistry.java +++ b/java/code/src/com/redhat/rhn/common/hibernate/AnnotationRegistry.java @@ -80,8 +80,6 @@ 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; @@ -165,9 +163,7 @@ private AnnotationRegistry() { RecurringState.class, RecurringConfigChannel.class, RecurringInternalState.class, - InternalState.class, - PaygDimensionComputation.class, - PaygDimensionResult.class + InternalState.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 49bdb2065b8d..6eb3a9409fac 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); - public static final int LIST_BATCH_MAX_SIZE = 1000; + private 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/domain/channel/Channel.java b/java/code/src/com/redhat/rhn/domain/channel/Channel.java index 007957deb4bb..762ee762c1fb 100644 --- a/java/code/src/com/redhat/rhn/domain/channel/Channel.java +++ b/java/code/src/com/redhat/rhn/domain/channel/Channel.java @@ -20,7 +20,6 @@ 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; @@ -1013,14 +1012,14 @@ private String getArchTypeLabel() { * @return whether the channel is a RPM chanel or not */ public boolean isTypeRpm() { - return PackageFactory.ARCH_TYPE_RPM.equalsIgnoreCase(getArchTypeLabel()); + return "rpm".equalsIgnoreCase(getArchTypeLabel()); } /** * @return whether the channel is a DEB chanel or not */ public boolean isTypeDeb() { - return PackageFactory.ARCH_TYPE_DEB.equalsIgnoreCase(getArchTypeLabel()); + return "deb".equalsIgnoreCase(getArchTypeLabel()); } /** 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 308713b6454f..ba2c5e303839 100644 --- a/java/code/src/com/redhat/rhn/domain/channel/ChannelFamily.java +++ b/java/code/src/com/redhat/rhn/domain/channel/ChannelFamily.java @@ -29,6 +29,8 @@ */ 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; 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 86918bee655b..671fd2417ab5 100644 --- a/java/code/src/com/redhat/rhn/domain/channel/ChannelFamilyFactory.java +++ b/java/code/src/com/redhat/rhn/domain/channel/ChannelFamilyFactory.java @@ -41,10 +41,8 @@ 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"; private ChannelFamilyFactory() { super(); @@ -179,13 +177,6 @@ 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/cloudpayg/PaygSshDataFactory.java b/java/code/src/com/redhat/rhn/domain/cloudpayg/PaygSshDataFactory.java index 204c331469f0..a772cf358f30 100644 --- a/java/code/src/com/redhat/rhn/domain/cloudpayg/PaygSshDataFactory.java +++ b/java/code/src/com/redhat/rhn/domain/cloudpayg/PaygSshDataFactory.java @@ -97,7 +97,7 @@ public static Optional lookupById(Integer id) { * @return list of payg ssh daa objects */ public static List lookupPaygSshData() { - return getSession().createQuery("FROM PaygSshData", PaygSshData.class).list(); + return getSession().createQuery("FROM PaygSshData").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 e72e7a3e3466..b7e9dcf1e009 100644 --- a/java/code/src/com/redhat/rhn/domain/common/ArchType.java +++ b/java/code/src/com/redhat/rhn/domain/common/ArchType.java @@ -15,7 +15,6 @@ 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; @@ -80,10 +79,10 @@ public void setName(String n) { public PackageType getPackageType() { String archType = getLabel(); - if (archType.equals(PackageFactory.ARCH_TYPE_DEB)) { + if (archType.equals("deb")) { return PackageType.DEB; } - else if (archType.equals(PackageFactory.ARCH_TYPE_RPM)) { + else if (archType.equals("rpm")) { return PackageType.RPM; } else { 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 6b5c1f8da6ee..a265cca88f6f 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,11 +20,6 @@ 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 a5fc10ec20ab..8e5c5b648be0 100644 --- a/java/code/src/com/redhat/rhn/domain/credentials/Credentials.java +++ b/java/code/src/com/redhat/rhn/domain/credentials/Credentials.java @@ -25,8 +25,6 @@ import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; -import java.util.Optional; - /** * Credentials - Java representation of the table SUSECREDENTIALS. * @@ -216,19 +214,7 @@ public boolean isEmpty() { * is at the moment denoted by having the url field set. */ public boolean isPrimarySCCCredential() { - 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(); + return type.getLabel().equals(TYPE_SCC) && url != null; } /** @@ -241,12 +227,10 @@ public boolean equals(Object other) { } Credentials otherCredentials = (Credentials) other; return new EqualsBuilder() - .append(getType(), otherCredentials.getType()) - .append(getUsername(), otherCredentials.getUsername()) - .append(getPassword(), otherCredentials.getPassword()) - .append(getUrl(), otherCredentials.getUrl()) - .append(getExtraAuthData(), otherCredentials.getExtraAuthData()) - .isEquals(); + .append(getType(), otherCredentials.getType()) + .append(getUsername(), otherCredentials.getUsername()) + .append(getPassword(), otherCredentials.getPassword()) + .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 7637d7944448..a40f2bde2bd5 100644 --- a/java/code/src/com/redhat/rhn/domain/credentials/CredentialsFactory.java +++ b/java/code/src/com/redhat/rhn/domain/credentials/CredentialsFactory.java @@ -20,7 +20,10 @@ 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; @@ -90,8 +93,15 @@ public static Credentials createSCCCredentials() { * Helper method for looking up SCC credentials. * @return credentials or null */ - public static List listSCCCredentials() { - return listCredentialsByType(Credentials.TYPE_SCC); + @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(); } /** @@ -154,9 +164,11 @@ 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) { + public static Credentials createCredentials(String username, String password, + String credentialsType, Map params) { if (StringUtils.isEmpty(username)) { return null; } @@ -187,17 +199,6 @@ 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 a5c07f2fc5d5..977a5b4035ca 100644 --- a/java/code/src/com/redhat/rhn/domain/entitlement/Entitlement.java +++ b/java/code/src/com/redhat/rhn/domain/entitlement/Entitlement.java @@ -20,15 +20,13 @@ 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 final String label; + private String label; /** * Constructs an Entitlement labeled lbl. @@ -70,26 +68,6 @@ 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 b09e4106829b..8af8cbf2cf94 100644 --- a/java/code/src/com/redhat/rhn/domain/errata/AdvisoryStatusEnumType.java +++ b/java/code/src/com/redhat/rhn/domain/errata/AdvisoryStatusEnumType.java @@ -17,12 +17,11 @@ /** * AdvisoryStatusEnumType */ -public class AdvisoryStatusEnumType extends CustomEnumType { +public class AdvisoryStatusEnumType extends CustomEnumType { /** * Constructor */ public AdvisoryStatusEnumType() { - super(AdvisoryStatus.class, String.class, AdvisoryStatus::getMetadataValue, - s -> AdvisoryStatus.fromMetadata(s).orElse(null)); + super(AdvisoryStatus.class, AdvisoryStatus::getMetadataValue, s -> AdvisoryStatus.fromMetadata(s).get()); } } 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 545ec2bc22a8..00d377e7e583 100644 --- a/java/code/src/com/redhat/rhn/domain/errata/CustomEnumType.java +++ b/java/code/src/com/redhat/rhn/domain/errata/CustomEnumType.java @@ -22,63 +22,38 @@ import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; -import java.sql.Types; import java.util.function.Function; /** - * Allows to maps enum in a custom way - * @param enum class - * @param type class + * CustomEnumType + * @param type */ -public abstract class CustomEnumType, K> implements UserType { +public class CustomEnumType> implements UserType { - private final Class enumClass; - - private final Class typeClass; - private final Function toDb; - private final Function fromDb; + private final Class clazz; + private final Function toDb; + private final Function fromDb; /** * Constructor - * @param enumClassIn the enum class - * @param typeClassIn the type class to store in the database. Currently supported: String, Integer + * @param clazzIn the class * @param toDbIn to db * @param fromDbIn from db */ - 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; + public CustomEnumType(Class clazzIn, Function toDbIn, Function fromDbIn) { + this.clazz = clazzIn; 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[]{getSqlType()}; + return new int[]{12}; } @Override public Class returnedClass() { - return enumClass; + return clazz; } @Override @@ -95,7 +70,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]; - K value = resultSet.getObject(name, typeClass); + String value = resultSet.getString(name); if (resultSet.wasNull()) { return null; } @@ -107,12 +82,12 @@ public Object nullSafeGet(ResultSet resultSet, String[] names, SharedSessionCont @Override public void nullSafeSet(PreparedStatement statement, Object value, int position, SharedSessionContractImplementor session) throws HibernateException, SQLException { - K jdbcValue = value == null ? null : toDb.apply(enumClass.cast(value)); + String jdbcValue = value == null ? null : toDb.apply((T)value); if (jdbcValue == null) { statement.setNull(position, 12); } else { - statement.setObject(position, jdbcValue, getSqlType()); + statement.setString(position, jdbcValue); } } 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 0bf07eb31b34..e6ad11d8f798 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); + return CredentialsFactory.createCredentials(params.get(USER_KEY), params.get(PASS_KEY), type, null); } } 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 23c7ce429b5f..9a89d4205c95 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,22 +81,6 @@ 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 @@ -387,19 +371,15 @@ public int hashCode() { .toHashCode(); } - /** - * {@inheritDoc} - */ @Override public String toString() { - 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()) + return new StringJoiner(", ", SUSEProduct.class.getSimpleName() + "[", "]") + .add(Long.toString(getId())) + .add(getName()) + .add(getVersion()) + .add(getRelease()) + .add(getArch().getLabel()) + .add("SCCid=" + Long.toString(getProductId())) .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 ff3e8903d2d8..45d350d49801 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,14 +60,4 @@ 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 bbc49150ad86..a2148ce26ac5 100644 --- a/java/code/src/com/redhat/rhn/domain/product/SUSEProductFactory.java +++ b/java/code/src/com/redhat/rhn/domain/product/SUSEProductFactory.java @@ -20,7 +20,6 @@ import com.redhat.rhn.common.util.RpmVersionComparator; import com.redhat.rhn.domain.channel.Channel; import com.redhat.rhn.domain.channel.ChannelFactory; -import com.redhat.rhn.domain.channel.ChannelFamilyFactory; import com.redhat.rhn.domain.rhnpackage.PackageArch; import com.redhat.rhn.domain.rhnpackage.PackageEvr; import com.redhat.rhn.domain.rhnpackage.PackageFactory; @@ -386,7 +385,7 @@ public static Stream findAllMandatoryChannels(String c */ public static Stream findNotSyncedMandatoryChannels(String channelLabel) { return findAllMandatoryChannels(channelLabel). - filter(spsr -> Objects.nonNull(ChannelFactory.lookupByLabel(spsr.getChannelLabel()))) + filter(spsr -> !Optional.ofNullable(ChannelFactory.lookupByLabel(spsr.getChannelLabel())).isPresent()) .sorted(Comparator.comparing(SUSEProductSCCRepository::getParentChannelLabel, Comparator.nullsFirst(Comparator.naturalOrder()))); } @@ -522,9 +521,12 @@ public static SUSEProduct lookupByProductId(long productId) { */ public static Map productsByProductIds() { Session session = getSession(); - return session.createQuery("from com.redhat.rhn.domain.product.SUSEProduct", SUSEProduct.class) - .stream() - .collect(Collectors.toMap(SUSEProduct::getProductId, p -> p)); + Criteria c = session.createCriteria(SUSEProduct.class); + Map result = new HashMap<>(); + for (SUSEProduct prd: (List) c.list()) { + result.put(prd.getProductId(), prd); + } + return result; } /** @@ -657,39 +659,6 @@ 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(); - } - - /** - * @return a stream of products with channel family SLE-M-T (Tools Channel) - */ - public static Stream listAllSLEMTProducts() { - //TODO: replace with optimised query later - return findAllSUSEProducts().stream() - .filter(p -> p.getChannelFamily() != null) - .filter(p -> ChannelFamilyFactory.TOOLS_CHANNEL_FAMILY_LABEL.equals(p.getChannelFamily().getLabel())); - } - - /** - * @return a stream of products with channel family SMP (SUSE Manager Proxy) - */ - public static Stream listAllSMPProducts() { - //TODO: replace with optimised query later - return findAllSUSEProducts().stream() - .filter(p -> p.getChannelFamily() != null) - .filter(p -> p.getChannelFamily().getLabel().equals(ChannelFamilyFactory.PROXY_CHANNEL_FAMILY_LABEL)); - } - /** * 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 91ac31396d7f..afce2faa733b 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 @@ -85,18 +85,9 @@ private SUSEProductTestUtils() { * @param family the channel family * @return the newly created SUSE product */ - 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 { + public static SUSEProduct createTestSUSEProduct(ChannelFamily family) { SUSEProduct product = new SUSEProduct(); + String name = TestUtils.randomString().toLowerCase(); product.setName(name); product.setVersion("1"); product.setFriendlyName("SUSE Test product " + name); 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 93b8956e79e5..5662679f30b6 100644 --- a/java/code/src/com/redhat/rhn/domain/scc/SCCCachingFactory.java +++ b/java/code/src/com/redhat/rhn/domain/scc/SCCCachingFactory.java @@ -17,12 +17,10 @@ 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; @@ -34,13 +32,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; @@ -325,29 +323,30 @@ public static void clearOrderItems() { * @return true if refresh is needed, false otherwise */ public static boolean refreshNeeded(Optional lastRefreshDateIn) { - 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"); + 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 true; - }); + }, + modifiedCache -> { + log.debug("COMPARE: {} and {} : {}", modifiedCache, modifiedCreds, + modifiedCache.compareTo(modifiedCreds)); + return modifiedCache.compareTo(modifiedCreds) < 0; + } + ); } /** @@ -457,51 +456,25 @@ public static List lookupRepositoryIdsWithAuth() { * @return list of {@link SCCRepository} for the given channel family label */ public static List lookupRepositoriesByChannelFamily(String channelFamily) { - return getSession().createNamedQuery("SCCRepository.lookupByChannelFamily", SCCRepository.class) + return getSession().getNamedQuery("SCCRepository.lookupByChannelFamily") .setParameter("channelFamily", channelFamily).getResultList(); } /** - * Returns a set of repositories for a product, independent of the version, and arch. + * Returns a list 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 Set of repositories for all version of one product and arch + * @return List of repositories for all version of one product and arch */ - public static Set lookupRepositoriesByProductNameAndArchForPayg( - String productName, String archName) { - return new HashSet<>(getSession() - .createNamedQuery("SCCRepository.lookupByProductNameAndArchForPayg", SCCRepository.class) + public static List lookupRepositoriesByProductNameAndArchForPayg(String productName, + String archName) { + return getSession().getNamedQuery("SCCRepository.lookupByProductNameAndArchForPayg") .setParameter("product_name", productName) .setParameter("arch_name", archName) - .list()); + .getResultList(); } - /** - * 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 7d9aee83034a..2acc3d203f2e 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().isEmpty()) { + if (!a.getOptionalCredentials().isPresent()) { 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.isTypeOf(Credentials.TYPE_CLOUD_RMT)) { + if (ct.getType().getLabel().equals(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 -> !c.isTypeOf(Credentials.TYPE_SCC)) + .map(c -> !Credentials.TYPE_SCC.equals(c.getType().getLabel())) .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 29758844851f..b541126843ed 100644 --- a/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryAuth.java +++ b/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryAuth.java @@ -20,9 +20,7 @@ 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; @@ -187,13 +185,6 @@ 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} */ @@ -220,15 +211,4 @@ 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 a9699dcbb683..b92cc419c8ac 100644 --- a/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryBasicAuth.java +++ b/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryBasicAuth.java @@ -15,7 +15,6 @@ 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; @@ -80,15 +79,4 @@ 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 855e5f4c380b..9a7b77dcea50 100644 --- a/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryCloudRmtAuth.java +++ b/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryCloudRmtAuth.java @@ -16,7 +16,6 @@ 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; @@ -82,15 +81,4 @@ 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 f4c719246f04..84005295a79b 100644 --- a/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryNoAuth.java +++ b/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryNoAuth.java @@ -14,12 +14,8 @@ */ 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; @@ -44,7 +40,7 @@ public SCCRepositoryNoAuth() { } @Override @Transient public String getUrl() { - if (Config.get().getString(ContentSyncManager.RESOURCE_PATH, null) != null) { + if (getCredentials() == null) { return MgrSyncUtils.urlToFSPath(getRepo().getUrl(), getRepo().getName()).toString(); } return getRepo().getUrl(); @@ -58,15 +54,4 @@ 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 6857b3ab7d3c..32f782b76eb9 100644 --- a/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryTokenAuth.java +++ b/java/code/src/com/redhat/rhn/domain/scc/SCCRepositoryTokenAuth.java @@ -14,7 +14,6 @@ */ 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; @@ -94,14 +93,4 @@ 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 f37adbf7cccc..2e194e900fd7 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,10 +22,9 @@ 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.BaseTestCaseWithUser; +import com.redhat.rhn.testing.RhnBaseTestCase; import com.redhat.rhn.testing.TestUtils; import org.junit.jupiter.api.BeforeEach; @@ -34,13 +33,11 @@ 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 BaseTestCaseWithUser { +public class SCCCachingFactoryTest extends RhnBaseTestCase { /** * Test if initially an empty list is returned. @@ -76,7 +73,7 @@ public void testRepositoriesInsertAndLookup() { */ @Test public void testRefreshNeeded() { - for (Credentials c : CredentialsFactory.listSCCCredentials()) { + for (Credentials c : CredentialsFactory.lookupSCCCredentials()) { CredentialsFactory.removeCredentials(c); } Credentials creds = CredentialsFactory.createSCCCredentials(); @@ -97,20 +94,6 @@ 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 @@ -131,8 +114,7 @@ private SCCRepository createTestRepo(Long id) { */ @Override @BeforeEach - public void setUp() throws Exception { - super.setUp(); + public void setUp() { SCCCachingFactory.clearRepositories(); } } 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 954561c04c87..2f6d17939855 100644 --- a/java/code/src/com/redhat/rhn/domain/server/ServerFactory.java +++ b/java/code/src/com/redhat/rhn/domain/server/ServerFactory.java @@ -1342,15 +1342,6 @@ 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 a906cdfb8801..f5a8ed22fbdb 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 @@ -619,11 +619,4 @@ 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/ServerFactoryTest.java b/java/code/src/com/redhat/rhn/domain/server/test/ServerFactoryTest.java index d0c3f2146ab8..bfac63a32a82 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 @@ -747,7 +747,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)); + "pythia", "secret", Credentials.TYPE_REPORT_CREDS, null)); info.setReportDbHost("localhost"); info.setReportDbPort(5432); info.setServer(minionServer); 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 9dce0c65baa8..c9526a8b8031 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,7 +18,6 @@ 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; @@ -118,7 +117,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 (PackageFactory.ARCH_TYPE_RPM.equals(c.getChannelArch().getArchType().getLabel())) { + if ("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/rhnpackage/PackageDetailsAction.java b/java/code/src/com/redhat/rhn/frontend/action/rhnpackage/PackageDetailsAction.java index e0f2f189f085..4fa847b80c7e 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,6 +74,7 @@ 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/xmlrpc/channel/software/test/ChannelSoftwareHandlerTest.java b/java/code/src/com/redhat/rhn/frontend/xmlrpc/channel/software/test/ChannelSoftwareHandlerTest.java index 6da210dade54..191254fbb42a 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,7 +72,6 @@ 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; @@ -114,11 +113,9 @@ 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, paygManager); - private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi, paygManager); + private RegularMinionBootstrapper regularMinionBootstrapper = new RegularMinionBootstrapper(systemQuery, saltApi); + private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi); private XmlRpcSystemHelper xmlRpcSystemHelper = new XmlRpcSystemHelper( regularMinionBootstrapper, sshMinionBootstrapper 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 1c810f56a357..4afdcd0e69bd 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,7 +36,6 @@ 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; @@ -63,11 +62,9 @@ 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, paygManager); - private final SSHMinionBootstrapper sshMinionBootstrapper = - new SSHMinionBootstrapper(systemQuery, saltApi, paygManager); + systemQuery, saltApi); + private final SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi); 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 13e8af0efeb2..6c63cf156d37 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.listSCCCredentials()) { + for (Credentials c : CredentialsFactory.lookupSCCCredentials()) { if (c.getUsername().equals(username)) { new MirrorCredentialsManager().deleteMirrorCredentials(c.getId(), null); break; 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 08c9a5d0f011..e283655e49f5 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,7 +53,6 @@ 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; @@ -90,10 +89,8 @@ public class ServerConfigHandlerTest extends BaseHandlerTestCase { private TaskomaticApi taskomaticApi = new TaskomaticApi(); private SaltApi saltApi = new TestSaltApi(); private SystemQuery systemQuery = new TestSystemQuery(); - private CloudPaygManager paygManager = new CloudPaygManager(); - private RegularMinionBootstrapper regularMinionBootstrapper = - new RegularMinionBootstrapper(systemQuery, saltApi, paygManager); - private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi, paygManager); + private RegularMinionBootstrapper regularMinionBootstrapper = new RegularMinionBootstrapper(systemQuery, saltApi); + private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi); 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 0c547643fc11..1128641147bb 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,7 +30,6 @@ 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; @@ -51,10 +50,8 @@ public class SnapshotHandlerTest extends BaseHandlerTestCase { private SaltApi saltApi = new TestSaltApi(); private SystemQuery systemQuery = new TestSystemQuery(); - private CloudPaygManager paygManager = new CloudPaygManager(); - private RegularMinionBootstrapper regularMinionBootstrapper = - new RegularMinionBootstrapper(systemQuery, saltApi, paygManager); - private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi, paygManager); + private RegularMinionBootstrapper regularMinionBootstrapper = new RegularMinionBootstrapper(systemQuery, saltApi); + private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi); 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 d287f9eb5753..0baebae994cc 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,7 +42,6 @@ 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; @@ -64,10 +63,8 @@ public class ServerGroupHandlerTest extends BaseHandlerTestCase { private SaltApi saltApi = new TestSaltApi(); private SystemQuery systemQuery = new TestSystemQuery(); - private CloudPaygManager paygManager = new CloudPaygManager(); - private RegularMinionBootstrapper regularMinionBootstrapper = - new RegularMinionBootstrapper(systemQuery, saltApi, paygManager); - private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi, paygManager); + private RegularMinionBootstrapper regularMinionBootstrapper = new RegularMinionBootstrapper(systemQuery, saltApi); + private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi); 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 5df8478b5dda..ffa2bc3839f0 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,7 +46,6 @@ 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; @@ -105,10 +104,9 @@ 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, paygMgr); - SSHMinionBootstrapper sshBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi, paygMgr); + RegularMinionBootstrapper regularBootstrapper = new RegularMinionBootstrapper(systemQuery, saltApi); + SSHMinionBootstrapper sshBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi); XmlRpcSystemHelper xmlRpcHelper = new XmlRpcSystemHelper(regularBootstrapper, sshBootstrapper); ServerGroupManager groupManager = new ServerGroupManager(saltApi); 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 440cf7a5390f..54d13f90ef09 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,7 +164,6 @@ 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; @@ -214,10 +213,8 @@ public class SystemHandlerTest 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 RegularMinionBootstrapper regularMinionBootstrapper = - new RegularMinionBootstrapper(systemQuery, saltApi, paygManager); - private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi, paygManager); + private RegularMinionBootstrapper regularMinionBootstrapper = new RegularMinionBootstrapper(systemQuery, saltApi); + private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi); private XmlRpcSystemHelper xmlRpcSystemHelper = new XmlRpcSystemHelper( regularMinionBootstrapper, sshMinionBootstrapper 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 dd0f63c58921..44405b768bba 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,7 +32,6 @@ 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; @@ -131,10 +130,8 @@ public void testExternalGroupToServerGroupMap() { String desc = TestUtils.randomString(); SaltApi saltApi = new TestSaltApi(); SystemQuery systemQuery = new TestSystemQuery(); - CloudPaygManager paygManager = new CloudPaygManager(); - RegularMinionBootstrapper regularMinionBootstrapper = - new RegularMinionBootstrapper(systemQuery, saltApi, paygManager); - SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi, paygManager); + RegularMinionBootstrapper regularMinionBootstrapper = new RegularMinionBootstrapper(systemQuery, saltApi); + SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi); XmlRpcSystemHelper xmlRpcSystemHelper = new XmlRpcSystemHelper( regularMinionBootstrapper, sshMinionBootstrapper 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 7380ad5795f8..b1b1346934af 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,7 +55,6 @@ 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; @@ -105,10 +104,8 @@ public class MinionActionManagerTest extends JMockBaseTestCaseWithUser { new SystemUnentitler(virtManager, monitoringManager, serverGroupManager), new SystemEntitler(saltApi, virtManager, monitoringManager, serverGroupManager) ); - private final CloudPaygManager paygManager = new CloudPaygManager(); - private RegularMinionBootstrapper regularMinionBootstrapper = - new RegularMinionBootstrapper(systemQuery, saltApi, paygManager); - private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi, paygManager); + private RegularMinionBootstrapper regularMinionBootstrapper = new RegularMinionBootstrapper(systemQuery, saltApi); + private SSHMinionBootstrapper sshMinionBootstrapper = new SSHMinionBootstrapper(systemQuery, saltApi); private XmlRpcSystemHelper xmlRpcSystemHelper = new XmlRpcSystemHelper( regularMinionBootstrapper, sshMinionBootstrapper 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 31e206030b46..cb8702e2efda 100644 --- a/java/code/src/com/redhat/rhn/manager/content/ContentSyncManager.java +++ b/java/code/src/com/redhat/rhn/manager/content/ContentSyncManager.java @@ -14,7 +14,6 @@ */ 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; @@ -25,8 +24,6 @@ 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.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; @@ -55,15 +52,13 @@ import com.redhat.rhn.domain.server.ServerFactory; import com.redhat.rhn.manager.channel.ChannelManager; -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; @@ -121,7 +116,7 @@ public class ContentSyncManager { // Logger instance - private static final Logger LOG = LogManager.getLogger(ContentSyncManager.class); + private static Logger log = LogManager.getLogger(ContentSyncManager.class); /** * OES channel family name, this is used to distinguish supported non-SUSE @@ -131,6 +126,7 @@ 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"); @@ -140,9 +136,11 @@ 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 @@ -151,30 +149,10 @@ 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; - } } /** @@ -185,14 +163,6 @@ 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 @@ -201,14 +171,6 @@ 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. * @@ -223,10 +185,10 @@ public List readChannelFamilies() { SCCClientUtils.toListType(ChannelFamilyJson.class)); } catch (IOException e) { - LOG.error(e); + log.error(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; @@ -249,8 +211,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; } @@ -271,18 +233,8 @@ private List filterCredentials() throws ContentSyncException { return list; } - List credentials = CredentialsFactory.listSCCCredentials(); + List credentials = CredentialsFactory.lookupSCCCredentials(); 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 { @@ -322,7 +274,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); } @@ -332,8 +284,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); @@ -356,7 +308,7 @@ private static List getAdditionalRepositories() { SCCClientUtils.toListType(SCCRepositoryJson.class)); } catch (IOException e) { - LOG.error(e); + log.error(e); } repos.addAll(collectRepos(flattenProducts(getAdditionalProducts()).collect(Collectors.toList()))); return repos; @@ -396,7 +348,7 @@ private static List getAdditionalProducts() { SCCClientUtils.toListType(SCCProductJson.class)); } catch (IOException e) { - LOG.error(e); + log.error(e); } return fixAdditionalProducts(additionalProducts); } @@ -407,7 +359,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); @@ -441,7 +393,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); @@ -466,7 +418,7 @@ private List listProductsImpl() { Map>> byRootId = availableChannels.stream() .collect(Collectors.groupingBy(p -> p.getA().getRootProduct().getId())); - return roots.stream() + List productDtos = roots.stream() .filter(p -> byProductId.containsKey(p.getId())) .map(root -> { @@ -528,6 +480,7 @@ 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(), @@ -550,16 +503,25 @@ private List listProductsImpl() { .map(s -> s.contains(root.getProductId())) .orElse(false); - return new MgrSyncProductDto( + MgrSyncProductDto productDto = new MgrSyncProductDto( ext.getFriendlyName(), ext.getProductId(), ext.getId(), ext.getVersion(), isRecommended, baseChannel, extChildChannels, Collections.emptySet() ); + + return productDto; }).collect(Collectors.toSet()); - return new MgrSyncProductDto( + + MgrSyncProductDto rootProductDto = new MgrSyncProductDto( root.getFriendlyName(), root.getProductId(), root.getId(), root.getVersion(), false, - baseChannel, allChannels, extensions); + baseChannel, allChannels, extensions + ); + + return rootProductDto; }).collect(Collectors.toList()); + + + return productDtos; } /** @@ -582,23 +544,21 @@ 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); - 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) { + 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"); throw new ContentSyncException(e); } } + catch (URISyntaxException e) { + throw new ContentSyncException(e); + } repos.addAll(getAdditionalRepositories()); refreshRepositoriesAuthentication(repos, c, mirrorUrl); } @@ -641,28 +601,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); }) @@ -673,17 +633,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 @@ -694,14 +654,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); @@ -710,10 +670,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; } @@ -738,10 +698,10 @@ 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; } } @@ -754,7 +714,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); @@ -762,12 +722,12 @@ public boolean isRefreshNeeded(String mirrorUrl) { lastRefreshDate, () -> true, modifiedCache -> { - LOG.debug("Last sync more than 24 hours ago: {} ({})", modifiedCache, t); + log.debug("Last sync more than 24 hours ago: {} ({})", modifiedCache, t); return t.after(modifiedCache) ? true : false; } ); } - else if (CredentialsFactory.listSCCCredentials().isEmpty()) { + else if (CredentialsFactory.lookupSCCCredentials().isEmpty()) { // Can happen when neither SCC Credentials nor fromdir is configured // in such a case, refresh makes no sense. return false; @@ -816,14 +776,12 @@ 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().isEmpty()) - .filter(a -> a.cloudRmtAuth().isEmpty()) + .filter(a -> !a.getOptionalCredentials().isPresent()) .forEach(SCCCachingFactory::deleteRepositoryAuth); } allRepoAuths = null; @@ -835,14 +793,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().isEmpty(); + return !a.getOptionalCredentials().isPresent(); } else { Optional oc = a.getOptionalCredentials(); @@ -851,8 +809,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.forEach(a -> { + log.error("More than 1 authentication found for one credential - removing all unused"); + authsThisCred.stream().forEach(a -> { allAuths.remove(a); authsThisCred.remove(a); repo.setRepositoryAuth(allAuths); @@ -873,7 +831,7 @@ 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 && @@ -882,7 +840,7 @@ else if (c != null && .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()); + log.debug("Free repo detected. Setting NoAuth for {}", repo.getUrl()); newAuth = new SCCRepositoryNoAuth(); } else { @@ -895,7 +853,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; } } @@ -908,7 +866,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; } } @@ -958,9 +916,8 @@ 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 -> repoAuth.cloudRmtAuth().isEmpty()) // rmtAuth is handled elsewhere - .filter(repoAuth -> !repoIdsFromCredential.contains(repoAuth.getRepo().getSccId())) - .forEach(SCCCachingFactory::deleteRepositoryAuth); + .filter(repoAuth -> !repoIdsFromCredential.contains(repoAuth.getRepo().getSccId())) + .forEach(SCCCachingFactory::deleteRepositoryAuth); if (withFix) { SUSEProductFactory.lookupPSRByChannelLabel("rhel6-pool-i386").stream().findFirst() @@ -1030,7 +987,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; } @@ -1048,7 +1005,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; } @@ -1061,7 +1018,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); @@ -1108,7 +1065,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; @@ -1140,15 +1097,16 @@ public List refreshOESRepositoryAuth(Credentials c, String mirrorUrl, List Set authsThisCred = allAuths.stream() .filter(a -> { if (c == null) { - return a.getOptionalCredentials().isEmpty(); + return !a.getOptionalCredentials().isPresent(); } else { - return a.getOptionalCredentials().filter(oc -> oc.equals(c)).isPresent(); + Optional oc = a.getOptionalCredentials(); + return oc.isPresent() && oc.get().equals(c); } }) .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); @@ -1166,7 +1124,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(); @@ -1247,7 +1205,7 @@ public String contentSourceUrlOverwrite(SCCRepository repo, String defaultUrl, S } } catch (URISyntaxException e) { - LOG.warn(e.getMessage()); + log.warn(e.getMessage()); } return defaultUrl; } @@ -1312,11 +1270,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); } } @@ -1342,7 +1300,7 @@ public List updateSubscriptions(Credentials credentials) th } } catch (URISyntaxException e) { - LOG.error("Invalid URL:{}", e.getMessage()); + log.error("Invalid URL:{}", e.getMessage()); return new ArrayList<>(); } refreshSubscriptionCache(subscriptions, credentials); @@ -1358,15 +1316,11 @@ 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) { - if (c != null && c.isTypeOf(Credentials.TYPE_CLOUD_RMT)) { - // RMT report always empty subscriptions - continue; - } try { subscriptions.addAll(updateSubscriptions(c)); } @@ -1374,10 +1328,10 @@ public Collection updateSubscriptions() throws ContentSyncE throw new ContentSyncException(e); } } - 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; } @@ -1401,7 +1355,7 @@ public void refreshOrderItemCache(Credentials c) throws SCCClientException { } } catch (URISyntaxException e) { - LOG.error("Invalid URL:{}", e.getMessage()); + log.error("Invalid URL:{}", e.getMessage()); } List existingOI = SCCCachingFactory.listOrderItemsByCredentials(c); for (SCCOrderJson order : orders) { @@ -1431,7 +1385,7 @@ private void generateOEMOrderItems(List subscriptions, .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) @@ -1448,7 +1402,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()); } }); @@ -1467,9 +1421,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"); } /** @@ -1479,7 +1433,7 @@ public void updateRepositories(String mirrorUrl) throws ContentSyncException { */ public void updateChannelFamilies(Collection channelFamilies) throws ContentSyncException { - LOG.info("ContentSyncManager.updateChannelFamilies called"); + log.info("ContentSyncManager.updateChannelFamilies called"); List suffixes = Arrays.asList("", "ALPHA", "BETA"); for (ChannelFamilyJson channelFamily : channelFamilies) { @@ -1497,7 +1451,7 @@ public void updateChannelFamilies(Collection channelFamilies) } } } - LOG.info("ContentSyncManager.updateChannelFamilies finished"); + log.info("ContentSyncManager.updateChannelFamilies finished"); } /** @@ -1531,7 +1485,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); @@ -1578,7 +1532,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); } } else { @@ -1819,7 +1773,7 @@ public static void updateProducts(Map productsById, Map, SUSEProductExtension> extensionsToSave = new HashMap<>(); Set channelsToCleanup = new HashSet<>(); - tree.forEach(entry -> { + tree.stream().forEach(entry -> { SCCProductJson productJson = productsById.get(entry.getProductId()); SCCRepositoryJson repoJson = reposById.get(entry.getRepositoryId()); @@ -1830,7 +1784,7 @@ public static void updateProducts(Map productsById, Map Optional.ofNullable(productsById.get(id))); if (productJson != null && repoJson != null && rootJson != null && - (parentJson.isEmpty() || parentJson.get().isPresent())) { + (!parentJson.isPresent() || parentJson.get().isPresent())) { Tuple3 ids = new Tuple3<>(rootJson.getId(), productJson.getId(), repoJson.getSCCId()); SUSEProduct product = productMap.get(productJson.getId()); @@ -1855,7 +1809,7 @@ public static void updateProducts(Map productsById, Map i.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()); @@ -1877,19 +1831,19 @@ public static void updateProducts(Map productsById, Map productsById, Map i.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()); @@ -1959,7 +1913,7 @@ public static void updateProducts(Map productsById, Map { + ChannelFactory.listVendorChannels().stream().forEach(c -> { updateChannel(c); if (channelsToCleanup.contains(c.getLabel())) { ChannelManager.disassociateChannelEntries(c); @@ -1993,7 +1947,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( @@ -2022,7 +1976,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(","))); } @@ -2178,10 +2132,11 @@ public void updateUpgradePaths(Collection products, List listChannels() { - return listProducts().stream().flatMap(p -> Stream.concat( + List collect = 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) { @@ -2200,7 +2155,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(); @@ -2209,8 +2164,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(); @@ -2263,8 +2218,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; } @@ -2446,10 +2401,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) { @@ -2457,14 +2412,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"); } } } @@ -2523,7 +2478,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()); } return false; } @@ -2545,7 +2500,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 { @@ -2554,15 +2509,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()); } catch (URISyntaxException e) { - LOG.error("accessibleUrl: {} URISyntaxException {}", url, e.getMessage()); + log.error("accessibleUrl: {} URISyntaxException {}", url, e.getMessage()); } return false; } @@ -2573,7 +2528,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 when access is not possible + * @throws SCCClientException * @return {@link SCCWebClient} */ private SCCClient getSCCClient(Credentials credentials) @@ -2599,28 +2554,11 @@ else if (!localFile.isDirectory()) { } } - 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); + String username = credentials == null ? null : credentials.getUsername(); + String password = credentials == null ? null : credentials.getPassword(); + + return SCCClientFactory.getInstance(url, username, password, localAbsolutePath, + getUUID()); } /** @@ -2659,22 +2597,6 @@ public boolean hasToolsChannelSubscription() { .map(SCCSubscription::getProducts) .flatMap(Set::stream) .filter(p -> p.getChannelFamily() != null) - .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)); + .anyMatch(p -> p.getChannelFamily().getLabel().equals(ChannelFamily.TOOLS_CHANNEL_FAMILY_LABEL)); } } 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 deleted file mode 100644 index b795bec0c594..000000000000 --- a/java/code/src/com/redhat/rhn/manager/content/test/ContentSyncManagerPaygTest.java +++ /dev/null @@ -1,266 +0,0 @@ -/* - * 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.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"); - - String headerAuth = "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 reponames = auth.stream() - .filter(a -> a.cloudRmtAuth().isPresent()) - .map(SCCRepositoryAuth::getRepo) - .map(SCCRepository::getName) - .collect(Collectors.toSet()); - assertContains(reponames, "SLE-Product-SUSE-Manager-Server-4.2-Pool"); - assertContains(reponames, "SLE-Product-SUSE-Manager-Server-4.2-Updates"); - assertContains(reponames, "SLE-Product-SUSE-Manager-Server-4.3-Pool"); - assertContains(reponames, "SLE-Product-SUSE-Manager-Server-4.3-Updates"); - assertContains(reponames, "SLE-Module-Basesystem15-SP3-Pool"); - assertContains(reponames, "SLE-Module-Basesystem15-SP4-Pool"); - assertContains(reponames, "SLE-Manager-Tools12-Pool"); - assertContains(reponames, "SLE-Manager-Tools12-Updates"); - assertContains(reponames, "SLE-Manager-Tools15-Pool"); - assertContains(reponames, "SLE-Manager-Tools15-Updates"); - assertContains(reponames, "SLE-Manager-Tools-For-Micro5-Pool"); - assertContains(reponames, "SLE-Manager-Tools-For-Micro5-Updates"); - assertContains(reponames, "SLE-Product-SUSE-Manager-Proxy-4.3-Pool"); - assertContains(reponames, "SLE-Product-SUSE-Manager-Proxy-4.3-Updates"); - assertContains(reponames, "RES-7-SUSE-Manager-Tools"); - assertContains(reponames, "RES8-Manager-Tools-Pool"); - assertContains(reponames, "RES8-Manager-Tools-Updates"); - assertContains(reponames, "EL9-Manager-Tools-Pool"); - assertContains(reponames, "EL9-Manager-Tools-Updates"); - - reponames = auth.stream() - .filter(a -> a.noAuth().isPresent()) - .map(SCCRepositoryAuth::getRepo) - .map(SCCRepository::getName) - .collect(Collectors.toSet()); - assertContains(reponames, "rockylinux-8"); - assertContains(reponames, "rockylinux-9"); - assertContains(reponames, "oraclelinux7"); - assertContains(reponames, "oraclelinux8"); - assertContains(reponames, "oraclelinux9"); - assertContains(reponames, "almalinux8"); - assertContains(reponames, "almalinux9"); - assertContains(reponames, "debian-11-pool"); - assertContains(reponames, "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 b30256d3553c..c04aa191d0b2 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 @@ -292,7 +292,7 @@ public void testUpdateProducts() throws Exception { List repositories = gson.fromJson( inputStreamReader3, new TypeToken>() { }.getType()); - Credentials credentials = CredentialsFactory.listSCCCredentials() + Credentials credentials = CredentialsFactory.lookupSCCCredentials() .stream() .filter(c -> c.getUsername().equals("dummy")) .findFirst().get(); @@ -887,7 +887,7 @@ public void testUpdateChannelsWithSimilarPath() throws Exception { new TypeToken>() { }.getType()); repositoriesChanged.addAll(additionalRepos); - Credentials sccCreds = CredentialsFactory.listSCCCredentials().get(0); + Credentials sccCreds = CredentialsFactory.lookupSCCCredentials().get(0); ContentSyncManager csm = new ContentSyncManager(); csm.updateSUSEProducts(productsChanged, upgradePaths, staticTreeChanged, additionalRepos); @@ -1154,7 +1154,7 @@ public void testSwitchingBestAuthItem() throws Exception { assertEquals("my-fake-token", a.tokenAuth().get().getAuth()); } MirrorCredentialsManager mgr = new MirrorCredentialsManager(); - Credentials scc1st = CredentialsFactory.listSCCCredentials().get(0); + Credentials scc1st = CredentialsFactory.lookupSCCCredentials().get(0); Credentials scc2nd = SUSEProductTestUtils.createSecondarySCCCredentials("dummy2", user); Gson gson = new GsonBuilder() @@ -2418,7 +2418,7 @@ public void testSUSEProductChannelUpdates() throws Exception { * Clear all credentials from the database. */ private void clearCredentials() { - for (Credentials creds : CredentialsFactory.listSCCCredentials()) { + for (Credentials creds : CredentialsFactory.lookupSCCCredentials()) { 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 eeea27298db9..39097a460573 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,4307 +1,7 @@ [ - { - "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", + "name" : "Open Enterprise Server 2015", "identifier" : "Open_Enterprise_Server", "former_identifier" : "", "version" : "2015", @@ -4348,7 +48,7 @@ }, { "id" : 43, - "name" : "Open Enterprise Server", + "name" : "Open Enterprise Server 2015 SP1", "identifier" : "Open_Enterprise_Server", "former_identifier" : "", "version" : "2015.1", @@ -4396,7 +96,7 @@ }, { "id" : 44, - "name" : "Open Enterprise Server", + "name" : "Open Enterprise Server 11 SP3", "identifier" : "Open_Enterprise_Server", "former_identifier" : "", "version" : "11.3", @@ -4444,7 +144,7 @@ }, { "id" : 45, - "name" : "Open Enterprise Server", + "name" : "Open Enterprise Server 2018", "identifier" : "Open_Enterprise_Server", "former_identifier" : "", "version" : "2018", @@ -4671,7 +371,7 @@ }, { "id" : 46, - "name" : "Open Enterprise Server", + "name" : "Open Enterprise Server 2018 SP1", "identifier" : "Open_Enterprise_Server", "former_identifier" : "", "version" : "2018.1", @@ -4682,7 +382,7 @@ "cpe" : null, "free" : false, "description" : null, - "release_stage" : "released", + "release_stage" : "beta", "eula_url" : "", "product_type" : "base", "offline_predecessor_ids" : [ @@ -4999,7 +699,7 @@ }, { "id" : 1232, - "name" : "Novell Open Enterprise Server 2", + "name" : "Novell Open Enterprise Server 2 11", "identifier" : "Open_Enterprise_Server", "former_identifier" : "", "version" : "11", @@ -5046,7 +746,7 @@ }, { "id" : 1241, - "name" : "Novell Open Enterprise Server 2", + "name" : "Novell Open Enterprise Server 2 11.1", "identifier" : "Open_Enterprise_Server", "former_identifier" : "", "version" : "11.1", @@ -5094,7 +794,7 @@ }, { "id" : 1242, - "name" : "Novell Open Enterprise Server 2", + "name" : "Novell Open Enterprise Server 2 11.2", "identifier" : "Open_Enterprise_Server", "former_identifier" : "", "version" : "11.2", @@ -5139,5 +839,264 @@ "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 8b4ad58ba906..605e4c11dc89 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" : -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 }, { - "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 @@ -30,21 +30,21 @@ "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 }, { - "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 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 f37069157e09..5d470ce59cef 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,382 +1,282 @@ [ - { - "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 + { + "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" + } +] 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 deleted file mode 100644 index 31127554bb69..000000000000 --- a/java/code/src/com/redhat/rhn/manager/content/test/rmtclouddata/organizations_products_unscoped.json +++ /dev/null @@ -1 +0,0 @@ -[{"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 deleted file mode 100644 index fe51488c7066..000000000000 --- a/java/code/src/com/redhat/rhn/manager/content/test/rmtclouddata/organizations_repositories.json +++ /dev/null @@ -1 +0,0 @@ -[] 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 deleted file mode 100644 index 1b48cb59236d..000000000000 --- a/java/code/src/com/redhat/rhn/manager/content/test/rmtclouddata/product_tree.json +++ /dev/null @@ -1,213390 +0,0 @@ -[ - { - "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/rhnpackage/test/PackageManagerPtfTest.java b/java/code/src/com/redhat/rhn/manager/rhnpackage/test/PackageManagerPtfTest.java index ae16c8f2d609..4b20c7162816 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,6 +120,8 @@ 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/setup/MirrorCredentialsManager.java b/java/code/src/com/redhat/rhn/manager/setup/MirrorCredentialsManager.java index c54fb80716fc..c2ea961f061c 100644 --- a/java/code/src/com/redhat/rhn/manager/setup/MirrorCredentialsManager.java +++ b/java/code/src/com/redhat/rhn/manager/setup/MirrorCredentialsManager.java @@ -60,7 +60,7 @@ public class MirrorCredentialsManager { */ public List findMirrorCredentials() { List credsList = new ArrayList<>(); - for (Credentials c : CredentialsFactory.listSCCCredentials()) { + for (Credentials c : CredentialsFactory.lookupSCCCredentials()) { MirrorCredentialsDto creds = new MirrorCredentialsDto( c.getUsername(), c.getPassword()); creds.setId(c.getId()); @@ -110,7 +110,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.listSCCCredentials()) { + for (Credentials existingCred : CredentialsFactory.lookupSCCCredentials()) { if (existingCred.getUsername().equals(creds.getUser()) && (creds.getId() != existingCred.getId())) { throw new MirrorCredentialsNotUniqueException("Username already exists"); @@ -138,7 +138,7 @@ public long storeMirrorCredentials(MirrorCredentialsDto creds, } // Make this the primary pair of credentials if it's the only one - if (CredentialsFactory.listSCCCredentials().size() == 1) { + if (CredentialsFactory.lookupSCCCredentials().size() == 1) { makePrimaryCredentials(c.getId()); } return c.getId(); @@ -160,7 +160,7 @@ public void deleteMirrorCredentials(Long id, HttpServletRequest request) // Make new primary credentials if necessary if (credentials.isPrimary()) { - List credsList = CredentialsFactory.listSCCCredentials(); + List credsList = CredentialsFactory.lookupSCCCredentials(); if (credsList != null && !credsList.isEmpty()) { credsList.stream().filter(c -> !c.equals(dbCreds)).findFirst() .ifPresent(c -> { @@ -190,7 +190,7 @@ public void deleteMirrorCredentials(Long id, HttpServletRequest request) } // Clear Repository Authentications - SCCCachingFactory.lookupRepositoryAuthByCredential(dbCreds) + SCCCachingFactory.lookupRepositoryAuthByCredential(dbCreds).stream() .forEach(SCCCachingFactory::deleteRepositoryAuth); // Clear the cache for deleted credentials 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 0309e22e27c9..3b3d2d9d76bb 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)); + Credentials.TYPE_REPORT_CREDS, null)); 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/task/ForwardRegistrationTask.java b/java/code/src/com/redhat/rhn/taskomatic/task/ForwardRegistrationTask.java index c440e7ce1131..2e164902d0da 100644 --- a/java/code/src/com/redhat/rhn/taskomatic/task/ForwardRegistrationTask.java +++ b/java/code/src/com/redhat/rhn/taskomatic/task/ForwardRegistrationTask.java @@ -57,7 +57,7 @@ public void execute(JobExecutionContext arg0) { } if (Config.get().getString(ContentSyncManager.RESOURCE_PATH) == null) { - List credentials = CredentialsFactory.listSCCCredentials(); + List credentials = CredentialsFactory.lookupSCCCredentials(); Optional optPrimCred = credentials.stream() .filter(Credentials::isPrimarySCCCredential) .findFirst(); 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 1dead1d12d09..b35aff7c6cc2 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 @@ -16,12 +16,8 @@ package com.redhat.rhn.taskomatic.task.payg; import com.redhat.rhn.common.conf.Config; -import com.redhat.rhn.common.util.RpmVersionComparator; import com.redhat.rhn.domain.cloudpayg.PaygSshData; -import com.redhat.rhn.domain.product.SUSEProductFactory; -import com.redhat.rhn.domain.rhnpackage.PackageFactory; import com.redhat.rhn.taskomatic.task.payg.beans.PaygInstanceInfo; -import com.redhat.rhn.taskomatic.task.payg.beans.PaygProductInfo; import com.suse.manager.reactor.utils.OptionalTypeAdapterFactory; @@ -38,11 +34,6 @@ import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; -import java.io.OutputStream; -import java.util.List; -import java.util.Objects; -import java.util.stream.Collectors; -import java.util.stream.Stream; public class PaygAuthDataExtractor { @@ -61,20 +52,6 @@ public class PaygAuthDataExtractor { .serializeNulls() .create(); - 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 * and extract all authentication data and cryptographic material needed to connect to the cloud rmt servers. @@ -83,19 +60,21 @@ private PaygInstanceInfo processOutput(int exitStatus, String error, String outp * @return Authentication data and cryptographic material to connect to cloud rmt host * @throws Exception */ - private PaygInstanceInfo extractAuthDataSSH(PaygSshData instance) throws Exception { + public PaygInstanceInfo extractAuthData(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()); } - int sshPortIn = instance.getPort() != null ? instance.getPort() : 22; + Integer 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() : ""; @@ -131,6 +110,7 @@ private PaygInstanceInfo extractAuthDataSSH(PaygSshData instance) throws Excepti channel.setInputStream(PaygAuthDataExtractor.class .getResourceAsStream("script/payg_extract_repo_data.py")); + //channel.setInputStream(null); InputStream stdout = channel.getInputStream(); InputStream stderr = channel.getErrStream(); channel.connect(); @@ -142,7 +122,16 @@ private PaygInstanceInfo extractAuthDataSSH(PaygSshData instance) throws Excepti waitForChannelClosed(channel); int exitStatus = channel.getExitStatus(); - return processOutput(exitStatus, error.toString(), output.toString()); + 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); } finally { if (channel != null) { @@ -176,77 +165,6 @@ private PaygInstanceInfo extractAuthDataSSH(PaygSshData instance) throws Excepti } } - /** - * 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); - } - catch (InterruptedException e) { - Thread.currentThread().interrupt(); - LOG.error(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.getHost().equals("localhost")) { - PaygInstanceInfo paygInstanceInfo = extractAuthDataLocal(); - RpmVersionComparator rpmVersionComparator = new RpmVersionComparator(); - List slemtProductInfos = Stream.concat( - SUSEProductFactory.listAllSLEMTProducts() - // TODO: deb not yet available on RMT - .filter(p -> p.getArch().getArchType().getLabel().equals(PackageFactory.ARCH_TYPE_RPM)), - SUSEProductFactory.listAllSMPProducts() - .filter(p -> rpmVersionComparator.compare(p.getVersion(), "4.2") >= 0)) - .filter(p -> Objects.nonNull(p.getArch())) - .map(p -> new PaygProductInfo(p.getName(), p.getVersion(), p.getArch().getLabel())) - .collect(Collectors.toList()); - paygInstanceInfo.getProducts().addAll(slemtProductInfos); - return paygInstanceInfo; - } - else { - return extractAuthDataSSH(instance); - } - } - private StringBuilder getCommandOutput(InputStream channelStdout) throws IOException { StringBuilder output = new StringBuilder(); InputStreamReader stream = new InputStreamReader(channelStdout); @@ -270,7 +188,6 @@ 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 24e44ed0813b..fb22b80e8966 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 @@ -39,10 +39,8 @@ import java.util.ArrayList; import java.util.HashMap; import java.util.List; -import java.util.Locale; import java.util.Map; import java.util.Optional; -import java.util.Set; import java.util.stream.Collectors; public class PaygAuthDataProcessor { @@ -68,7 +66,7 @@ public void processPaygInstanceData(PaygSshData instance, PaygInstanceInfo paygD Credentials credentials = processAndGetCredentials(instance, paygData); List existingRepos = SCCCachingFactory.lookupRepositoryAuthByCredential(credentials); - Set repositories = getReposToInsert(paygData.getProducts()); + List repositories = getReposToInsert(paygData.getProducts()); List processedRepoAuth = new ArrayList<>(); repositories.forEach(sccRepo-> { @@ -116,9 +114,8 @@ private Credentials processAndGetCredentials(PaygSshData instance, PaygInstanceI 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)); + CredentialsFactory.createCredentials(username, password, Credentials.TYPE_CLOUD_RMT, null)); credentials.setUsername(username); credentials.setPassword(password); @@ -134,12 +131,7 @@ private Credentials processAndGetCredentials(PaygSshData instance, PaygInstanceI } credentials.setPaygSshData(instance); - 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); - } + CredentialsFactory.storeCredentials(credentials); instance.setCredentials(credentials); PaygSshDataFactory.savePaygSshData(instance); @@ -161,26 +153,9 @@ public void invalidateCredentials(PaygSshData instance) { }); } - private Set getReposToInsert(List 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) - .collect(Collectors.toSet()); + private List getReposToInsert(List products) { + return products.stream().map(product -> + SCCCachingFactory.lookupRepositoriesByProductNameAndArchForPayg(product.getName(), product.getArch()) + ).flatMap(List::stream).collect(Collectors.toList()); } } 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 deleted file mode 100644 index d20913ef1452..000000000000 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/PaygComputeDimensionsTask.java +++ /dev/null @@ -1,137 +0,0 @@ -/* - * 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()) { - 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 5cfa01fd4bea..c65d54ac2de7 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,24 +15,21 @@ package com.redhat.rhn.taskomatic.task.payg; -import com.redhat.rhn.GlobalInstanceHolder; import com.redhat.rhn.common.hibernate.HibernateFactory; -import com.redhat.rhn.common.hibernate.LookupException; +import com.redhat.rhn.common.localization.LocalizationService; 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; @@ -43,7 +40,7 @@ public class PaygUpdateAuthTask extends RhnJavaJob { private final PaygAuthDataProcessor paygDataProcessor = new PaygAuthDataProcessor(); private PaygAuthDataExtractor paygDataExtractor = new PaygAuthDataExtractor(); - private CloudPaygManager cloudPaygManager = GlobalInstanceHolder.PAYG_MANAGER; + private static final Logger LOG = LogManager.getLogger(PaygUpdateAuthTask.class); private static final String KEY_ID = "sshData_id"; @@ -52,35 +49,9 @@ 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 Pay-as-you-go"); - 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))); @@ -100,17 +71,11 @@ 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 { - PaygInstanceInfo paygData = paygDataExtractor.extractAuthData(instance); + paygData = paygDataExtractor.extractAuthData(instance); paygDataProcessor.processPaygInstanceData(instance, paygData); instance.setStatus(PaygSshData.Status.S); instance.setErrorMessage(""); @@ -118,12 +83,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, ""); } 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 deleted file mode 100644 index e01fa2504bb3..000000000000 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/DimensionCalculator.java +++ /dev/null @@ -1,90 +0,0 @@ -/* - * 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 deleted file mode 100644 index f65711115da0..000000000000 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/DimensionRule.java +++ /dev/null @@ -1,80 +0,0 @@ -/* - * 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 deleted file mode 100644 index 2adcf6b43ec8..000000000000 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/DimensionsConfiguration.java +++ /dev/null @@ -1,79 +0,0 @@ -/* - * 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.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) - ), - - 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 deleted file mode 100644 index ffbb150e7a9e..000000000000 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/RuleType.java +++ /dev/null @@ -1,21 +0,0 @@ -/* - * 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 deleted file mode 100644 index 132ba189fd28..000000000000 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/AddonProductRule.java +++ /dev/null @@ -1,83 +0,0 @@ -/* - * 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 deleted file mode 100644 index dc03a62b95ec..000000000000 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/BaseProductRule.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * 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 deleted file mode 100644 index 833a0095ee81..000000000000 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/EntitlementRule.java +++ /dev/null @@ -1,81 +0,0 @@ -/* - * 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 deleted file mode 100644 index e539376de91c..000000000000 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/RequirementType.java +++ /dev/null @@ -1,21 +0,0 @@ -/* - * 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/test/AddonProductRuleTest.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/test/AddonProductRuleTest.java deleted file mode 100644 index 8bb5049beebe..000000000000 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/test/AddonProductRuleTest.java +++ /dev/null @@ -1,174 +0,0 @@ -/* - * 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 deleted file mode 100644 index 97ff95a1cdb0..000000000000 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/test/BaseProductRuleTest.java +++ /dev/null @@ -1,97 +0,0 @@ -/* - * 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 deleted file mode 100644 index c151af6f0b34..000000000000 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/dimensions/rules/test/EntitlementRuleTest.java +++ /dev/null @@ -1,142 +0,0 @@ -/* - * 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/test/PaygAuthDataProcessorTest.java b/java/code/src/com/redhat/rhn/taskomatic/task/payg/test/PaygAuthDataProcessorTest.java index c1181b217a95..f68968c39e08 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); + Credentials cred = CredentialsFactory.createCredentials("u", "p", Credentials.TYPE_CLOUD_RMT, null); 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); + Credentials cred = CredentialsFactory.createCredentials("u", "p", Credentials.TYPE_CLOUD_RMT, null); cred.setUrl("//my_url"); cred.setPaygSshData(paygData); paygData.setCredentials(cred); 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 deleted file mode 100644 index 8cb1cdc8734d..000000000000 --- a/java/code/src/com/redhat/rhn/taskomatic/task/payg/test/PaygComputeDimensionsTaskTest.java +++ /dev/null @@ -1,106 +0,0 @@ -/* - * 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 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.domain.channel.ChannelFamily; -import com.redhat.rhn.domain.product.SUSEProduct; -import com.redhat.rhn.domain.product.test.SUSEProductTestUtils; -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.taskomatic.task.payg.PaygComputeDimensionsTask; -import com.redhat.rhn.taskomatic.task.payg.dimensions.DimensionsConfiguration; -import com.redhat.rhn.testing.ErrataTestUtils; -import com.redhat.rhn.testing.JMockBaseTestCaseWithUser; -import com.redhat.rhn.testing.ServerTestUtils; - -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.cloud.domain.PaygDimensionResult; - -import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.Test; -import org.quartz.JobExecutionContext; - -import java.util.Date; -import java.util.Optional; - -public class PaygComputeDimensionsTaskTest extends JMockBaseTestCaseWithUser { - - private JobExecutionContext contextMock; - - private PaygDimensionFactory factory; - - private CloudPaygManager cloudManager; - - @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(); - } - - @Test - public void canComputeDimensions() throws Exception { - // Creating the servers - Server server1 = MinionServerFactoryTest.createTestMinionServer(user); - server1.setPayg(true); - ServerFactory.save(server1); - - Server server2 = MinionServerFactoryTest.createTestMinionServer(user); - - ServerTestUtils.createTestSystem(user); - ServerFactoryTest.createUnentitledTestServer(user, true, ServerFactoryTest.TYPE_SERVER_PROXY, new Date()); - - ChannelFamily channelFamily = ErrataTestUtils.createTestChannelFamily(); - SUSEProduct testProduct1 = SUSEProductTestUtils.createTestSUSEProduct(channelFamily, "sles_sap"); - SUSEProduct testProduct2 = SUSEProductTestUtils.createTestSUSEProduct(channelFamily); - - SUSEProductTestUtils.installSUSEProductOnServer(testProduct1, server1); - SUSEProductTestUtils.installSUSEProductOnServer(testProduct2, server2); - - var task = new PaygComputeDimensionsTask(DimensionsConfiguration.DEFAULT_CONFIGURATION, factory, cloudManager); - - task.execute(contextMock); - - PaygDimensionComputation result = factory.getLatestSuccessfulComputation(); - assertNotNull(result); - assertTrue(result.isSuccess()); - assertEquals(2, result.getDimensionResults().size()); - - Optional managedSystems = result.getResultForDimension(BillingDimension.MANAGED_SYSTEMS); - assertTrue(managedSystems.isPresent()); - managedSystems.ifPresent(dimensionResult -> assertEquals(2L, dimensionResult.getCount())); - - Optional monitoringSystems = result.getResultForDimension(BillingDimension.MONITORING); - assertTrue(monitoringSystems.isPresent()); - monitoringSystems.ifPresent(dimensionResult -> assertEquals(0L, dimensionResult.getCount())); - } -} 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 20c646fb6461..597c4ee55d51 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 @@ -18,37 +18,25 @@ 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.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.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; @@ -59,20 +47,12 @@ 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 { @@ -84,11 +64,6 @@ 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()); @@ -109,7 +84,6 @@ public void setUp() throws Exception { super.setUp(); clearDb(); - PAYG_DATA_TASK.setCloudPaygManager(new CloudPaygManager()); paygData = createPaygSshData(); PaygSshDataFactory.savePaygSshData(paygData); paygInstanceInfo = createPaygInstanceInfo(); @@ -125,119 +99,12 @@ 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 Pay-as-you-go", 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"); - } - } - } - @Test public void testJschException() throws Exception { CONTEXT.checking(new Expectations() { 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 c5aa0bc3eb1d..19f03b9246af 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,7 +30,6 @@ 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; @@ -73,7 +72,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(PackageFactory.ARCH_TYPE_DEB)) { + channelToProcess.getChannelArch().getArchType().getLabel().equalsIgnoreCase("deb")) { repoWriter = new DebRepositoryWriter(prefixPath, mountPoint); } else { diff --git a/java/code/src/com/redhat/rhn/testing/ImageTestUtils.java b/java/code/src/com/redhat/rhn/testing/ImageTestUtils.java index a9b614bf4336..b26922eeeeeb 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); + Credentials.TYPE_REGISTRY, null); } /** diff --git a/java/code/src/com/redhat/rhn/webapp/RhnServletListener.java b/java/code/src/com/redhat/rhn/webapp/RhnServletListener.java index 7d41c8c47f56..ac261e2451a4 100644 --- a/java/code/src/com/redhat/rhn/webapp/RhnServletListener.java +++ b/java/code/src/com/redhat/rhn/webapp/RhnServletListener.java @@ -57,8 +57,7 @@ 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.PAYG_MANAGER); + GlobalInstanceHolder.SALT_UTILS); 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 deleted file mode 100644 index 448976ae0730..000000000000 --- a/java/code/src/com/suse/cloud/CloudPaygManager.java +++ /dev/null @@ -1,106 +0,0 @@ -/* - * 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 java.nio.file.Files; -import java.nio.file.Path; - -/** - * Public Cloud Pay-as-you-go management class - */ -public class CloudPaygManager { - - private boolean isPaygInstance = false; - private CloudProvider cloudProvider; - public enum CloudProvider { - NONE, - AWS, - AZURE, - GCE - } - /** - * Constructor - */ - public CloudPaygManager() { - cloudProvider = CloudProvider.NONE; - if (isFileExecutable("/usr/bin/ec2metadata")) { - cloudProvider = CloudProvider.AWS; - } - else if (isFileExecutable("/usr/bin/azuremetadata")) { - cloudProvider = CloudProvider.AZURE; - } - else if (isFileExecutable("/usr/bin/gcemetadata")) { - cloudProvider = CloudProvider.GCE; - } - detectPaygInstance(); - } - - /** - * @return the CloudProvider - */ - public CloudProvider getCloudProvider() { - return cloudProvider; - } - - /** - * Only for testing - overwrite the detected provider - * @param providerIn the provider - */ - public void setCloudProvider(CloudProvider providerIn) { - cloudProvider = providerIn; - } - - /** - * @return if this is a Pay-as-you-go cloud instance - */ - public boolean isPaygInstance() { - return isPaygInstance; - } - - /** - * Only for testing - overwrite the detected isPaygInstance - * @param isPaygInstanceIn is payg instance - */ - public void setPaygInstance(boolean isPaygInstanceIn) { - isPaygInstance = isPaygInstanceIn; - } - - private void detectPaygInstance() { - isPaygInstance = false; - //TODO: replace with a real check. registercloudguest is available on all images - if (isFileExecutable("/usr/sbin/registercloudguest") && - fileExists("/usr/share/susemanager/.ispayg")) { - isPaygInstance = true; - } - } - - /** - * 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)); - } - - /** - * Check if files exists - * @param filename a filename to check - * @return returns true when file exists, otherwise false - */ - protected boolean fileExists(String filename) { - return Files.exists(Path.of(filename)); - } -} diff --git a/java/code/src/com/suse/cloud/domain/BillingDimension.java b/java/code/src/com/suse/cloud/domain/BillingDimension.java deleted file mode 100644 index cc1527b77c4c..000000000000 --- a/java/code/src/com/suse/cloud/domain/BillingDimension.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * 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 deleted file mode 100644 index 36d135d9bb46..000000000000 --- a/java/code/src/com/suse/cloud/domain/BillingDimensionEnumType.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * 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 deleted file mode 100644 index b0f2308b569d..000000000000 --- a/java/code/src/com/suse/cloud/domain/PaygDimensionComputation.java +++ /dev/null @@ -1,198 +0,0 @@ -/* - * 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 deleted file mode 100644 index 12536425a1cb..000000000000 --- a/java/code/src/com/suse/cloud/domain/PaygDimensionFactory.java +++ /dev/null @@ -1,66 +0,0 @@ -/* - * 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 deleted file mode 100644 index 5393f113bd6b..000000000000 --- a/java/code/src/com/suse/cloud/domain/PaygDimensionResult.java +++ /dev/null @@ -1,149 +0,0 @@ -/* - * 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 deleted file mode 100644 index 937553406511..000000000000 --- a/java/code/src/com/suse/cloud/domain/test/PaygDimensionFactoryTest.java +++ /dev/null @@ -1,98 +0,0 @@ -/* - * 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 deleted file mode 100644 index 44af3de79258..000000000000 --- a/java/code/src/com/suse/cloud/test/CloudPaygManagerTest.java +++ /dev/null @@ -1,75 +0,0 @@ -/* - * 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.assertTrue; - -import com.redhat.rhn.testing.BaseTestCaseWithUser; - -import com.suse.cloud.CloudPaygManager; - -import org.junit.jupiter.api.Test; - -public class CloudPaygManagerTest extends BaseTestCaseWithUser { - - @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() { - CloudPaygManager cpm = new CloudPaygManager() { - @Override - protected boolean isFileExecutable(String filename) { - return filename.equals("/usr/sbin/registercloudguest") || - filename.equals("/usr/bin/ec2metadata"); - } - - @Override - protected boolean fileExists(String filename) { - return filename.equals("/usr/share/susemanager/.ispayg"); - } - }; - assertTrue(cpm.isPaygInstance(), "Expecting a PAYG instance"); - } -} diff --git a/java/code/src/com/suse/manager/reactor/SaltReactor.java b/java/code/src/com/suse/manager/reactor/SaltReactor.java index 402bc6602913..b1e9f43208c2 100644 --- a/java/code/src/com/suse/manager/reactor/SaltReactor.java +++ b/java/code/src/com/suse/manager/reactor/SaltReactor.java @@ -25,7 +25,6 @@ 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; @@ -92,7 +91,6 @@ 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; @@ -108,15 +106,13 @@ 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, CloudPaygManager paygMgrIn) { + SaltUtils saltUtilsIn) { this.saltApi = saltApiIn; this.systemQuery = systemQueryIn; this.saltServerActionService = saltServerActionServiceIn; this.saltUtils = saltUtilsIn; - this.paygMgr = paygMgrIn; } /** @@ -126,7 +122,7 @@ public void start() { VirtManager virtManager = new VirtManagerSalt(saltApi); // Configure message queue to handle minion registrations - MessageQueue.registerAction(new RegisterMinionEventMessageAction(systemQuery, saltApi, paygMgr), + MessageQueue.registerAction(new RegisterMinionEventMessageAction(systemQuery, saltApi), RegisterMinionEventMessage.class); MessageQueue.registerAction(new ApplyStatesEventMessageAction(), ApplyStatesEventMessage.class); 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 9f1b8ac14da2..bfec37efe1af 100644 --- a/java/code/src/com/suse/manager/reactor/messaging/RegisterMinionEventMessageAction.java +++ b/java/code/src/com/suse/manager/reactor/messaging/RegisterMinionEventMessageAction.java @@ -28,7 +28,6 @@ import com.redhat.rhn.domain.channel.Channel; import com.redhat.rhn.domain.channel.ChannelArch; import com.redhat.rhn.domain.channel.ChannelFactory; -import com.redhat.rhn.domain.credentials.CredentialsFactory; import com.redhat.rhn.domain.notification.NotificationMessage; import com.redhat.rhn.domain.notification.UserNotificationFactory; import com.redhat.rhn.domain.notification.types.OnboardingFailed; @@ -60,7 +59,6 @@ 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; @@ -117,8 +115,6 @@ 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"; @@ -127,12 +123,10 @@ 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, CloudPaygManager paygMgrIn) { + public RegisterMinionEventMessageAction(SystemQuery systemQueryIn, SaltApi saltApiIn) { saltApi = saltApiIn; systemQuery = systemQueryIn; - cloudPaygManager = paygMgrIn; VirtManager virtManager = new VirtManagerSalt(saltApi); MonitoringManager monitoringManager = new FormulaMonitoringManager(saltApi); ServerGroupManager groupManager = new ServerGroupManager(saltApi); @@ -441,16 +435,6 @@ public void finalizeMinionRegistration(String minionId, .orElseThrow(() -> new SaltException("Missing systeminfo result. Aborting registration.")); ValueMap grains = systemInfo.getGrains(); - - if (cloudPaygManager.isPaygInstance() && CredentialsFactory.listSCCCredentials().size() == 0 && - !RegistrationUtils.isAllowedOnPayg(systemQuery, minionId, Collections.emptySet(), grains)) { - // BYOS or DC Instance is not allowed to register on a pure SUMA PAYG - // exception: free products or SUSE Manager Proxy - throw new RegisterMinionException(minionId, org, String.format( - "Registration of '%s' on SUSE Manager Server rejected. \n" + - "To manage BYOS (Bring-your-own-Subscription) or Datacenter clients you have to configure " + - "SCC Credentials at Admin => Setup Wizard => Organization Credentials.", minionId)); - } MinionServer minion = migrateOrCreateSystem(minionId, isSaltSSH, activationKeyOverride, machineId, grains); minion.setMachineId(machineId); @@ -564,10 +548,6 @@ 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); 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 14850f753c9e..4a0838946f0c 100644 --- a/java/code/src/com/suse/manager/reactor/messaging/RegistrationUtils.java +++ b/java/code/src/com/suse/manager/reactor/messaging/RegistrationUtils.java @@ -26,7 +26,6 @@ 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; @@ -85,8 +84,6 @@ 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; @@ -353,47 +350,11 @@ 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) { - 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)) { + if ("suse".equalsIgnoreCase(grains.getValueAsString(OS))) { Optional> productList = - systemQuery.getProducts(minionId); - return productList.stream().flatMap(pl -> pl.stream() + systemQuery.getProducts(server.getMinionId()); + return Opt.stream(productList).flatMap(pl -> pl.stream() .flatMap(pi -> { String osName = pi.getName().toLowerCase(); String osVersion = pi.getVersion(); @@ -402,47 +363,48 @@ private static Set identifyProduct(SystemQuery systemQuery, String Optional suseProduct = ofNullable(SUSEProductFactory.findSUSEProduct(osName, osVersion, osRelease, osArch, true)); - if (suseProduct.isEmpty()) { + if (!suseProduct.isPresent()) { LOG.warn("No product match found for: {} {} {} {}", osName, osVersion, osRelease, osArch); } - return suseProduct.stream(); + return Opt.stream(suseProduct); })).collect(toSet()); } else if (Set.of("redhat", "centos", "oel", "alibaba cloud (aliyun)", "almalinux", "amazon", "rocky") - .contains(osGrain.toLowerCase())) { + .contains(grains.getValueAsString(OS).toLowerCase())) { - Optional redhatProductInfo = systemQuery.redhatProductInfo(minionId); + Optional redhatProductInfo = systemQuery.redhatProductInfo(server.getMinionId()); Optional rhelProduct = redhatProductInfo.flatMap(x -> RhelUtils.detectRhelProduct( - channels, arch, x.getWhatProvidesRes(), x.getWhatProvidesSLL(), x.getRhelReleaseContent(), + server, 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(), arch); + rhel.getRelease(), server.getServerArch().getCompatibleChannelArch()); return Stream.empty(); } return rhel.getAllSuseProducts().stream(); }).collect(toSet()); } - else if ("ubuntu".equalsIgnoreCase(osGrain)) { + else if ("ubuntu".equalsIgnoreCase(grains.getValueAsString(OS))) { SUSEProduct product = SUSEProductFactory.findSUSEProduct("ubuntu-client", - grains.getValueAsString(OS_RELEASE), null, osArchGrain + "-deb", false); + grains.getValueAsString("osrelease"), null, grains.getValueAsString(OS_ARCH) + "-deb", false); if (product != null) { return Collections.singleton(product); } } - else if ("debian".equalsIgnoreCase(osGrain)) { + else if ("debian".equalsIgnoreCase(grains.getValueAsString(OS))) { SUSEProduct product = SUSEProductFactory.findSUSEProduct("debian-client", - grains.getValueAsString(OS_MAJOR_RELEASE), null, osArchGrain + "-deb", false); + grains.getValueAsString("osmajorrelease"), null, grains.getValueAsString(OS_ARCH) + "-deb", false); if (product != null) { return Collections.singleton(product); } } - LOG.warn("No product match found. OS grain is {}, arch is {}", osGrain, osArchGrain); + LOG.warn("No product match found. OS grain is {}, arch is {}", grains.getValueAsString(OS), + grains.getValueAsString(OS_ARCH)); 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 483e39a7e69d..c99a15de977a 100644 --- a/java/code/src/com/suse/manager/reactor/test/RebootInfoBeaconTest.java +++ b/java/code/src/com/suse/manager/reactor/test/RebootInfoBeaconTest.java @@ -23,7 +23,6 @@ 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; @@ -62,13 +61,11 @@ 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, - paygMgr + saltUtils ); } 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 1e5566464995..42f241da10d7 100644 --- a/java/code/src/com/suse/manager/reactor/test/RegisterMinionActionTest.java +++ b/java/code/src/com/suse/manager/reactor/test/RegisterMinionActionTest.java @@ -77,7 +77,6 @@ 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; @@ -151,7 +150,6 @@ public class RegisterMinionActionTest extends JMockBaseTestCaseWithUser { private Path metadataDirOfficial; private SaltService saltServiceMock; private SystemManager systemManager; - private CloudPaygManager cloudManager4Test; @FunctionalInterface private interface ExpectationsFunction { @@ -296,12 +294,6 @@ 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))); @@ -382,7 +374,7 @@ public void executeTest(ExpectationsFunction expectations, ActivationKeySupplier } RegisterMinionEventMessageAction action = new RegisterMinionEventMessageAction(saltServiceMock, - saltServiceMock, cloudManager4Test); + saltServiceMock); action.execute(new RegisterMinionEventMessage(MINION_ID, startupGrains)); // Verify the resulting system entry @@ -1798,153 +1790,6 @@ 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, 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 BYOS (Bring-your-own-Subscription) or 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 { @@ -1995,7 +1840,7 @@ private void setupStubs(SUSEProduct product) } }); RegisterMinionEventMessageAction action = - new RegisterMinionEventMessageAction(saltServiceMock, saltServiceMock, cloudManager4Test); + new RegisterMinionEventMessageAction(saltServiceMock, saltServiceMock); 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_slespayg.json b/java/code/src/com/suse/manager/reactor/test/dummy_systeminfo_slespayg.json deleted file mode 100644 index 6bdc5b4bea20..000000000000 --- a/java/code/src/com/suse/manager/reactor/test/dummy_systeminfo_slespayg.json +++ /dev/null @@ -1,280 +0,0 @@ -{ - "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/webui/Router.java b/java/code/src/com/suse/manager/webui/Router.java index 8dc2374ba0fd..70fec40cba26 100644 --- a/java/code/src/com/suse/manager/webui/Router.java +++ b/java/code/src/com/suse/manager/webui/Router.java @@ -29,7 +29,6 @@ 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; @@ -116,13 +115,12 @@ 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, paygManager); + new NotificationMessageController(systemQuery, saltApi); 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 38d5df835025..219e4294264d 100644 --- a/java/code/src/com/suse/manager/webui/controllers/ImageStoreController.java +++ b/java/code/src/com/suse/manager/webui/controllers/ImageStoreController.java @@ -210,7 +210,8 @@ 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().isTypeOf(Credentials.TYPE_REGISTRY)) { + if (s.getCreds() != null && s.getCreds().getType().getLabel().equals( + Credentials.TYPE_REGISTRY)) { Credentials dc = s.getCreds(); json.addProperty("username", dc.getUsername()); json.addProperty("password", dc.getPassword()); @@ -250,7 +251,8 @@ 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().isTypeOf(Credentials.TYPE_REGISTRY)) { + if (s.getCreds() != null && s.getCreds().getType().getLabel().equals( + 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 414ca9a697f6..005d6ce69950 100644 --- a/java/code/src/com/suse/manager/webui/controllers/NotificationMessageController.java +++ b/java/code/src/com/suse/manager/webui/controllers/NotificationMessageController.java @@ -29,7 +29,6 @@ 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; @@ -66,17 +65,14 @@ 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, CloudPaygManager paygMgrIn) { + public NotificationMessageController(SystemQuery systemQueryIn, SaltApi saltApiIn) { this.saltApi = saltApiIn; this.systemQuery = systemQueryIn; - this.paygManager = paygMgrIn; } /** @@ -220,8 +216,7 @@ 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, paygManager); + RegisterMinionEventMessageAction action = new RegisterMinionEventMessageAction(systemQuery, saltApi); 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 727f3e4a8568..66d89d17485c 100644 --- a/java/code/src/com/suse/manager/webui/controllers/ProductsController.java +++ b/java/code/src/com/suse/manager/webui/controllers/ProductsController.java @@ -131,8 +131,7 @@ public static ModelAndView show(Request request, Response response, User user) { 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() || csm.canSyncToolsChannelViaCloudRMT()))); + String.valueOf(!(ConfigDefaults.get().isUyuni() || csm.hasToolsChannelSubscription()))); return new ModelAndView(data, "templates/products/show.jade"); } 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 98f0178d17f4..5b34f3ab8402 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,7 +32,6 @@ 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; @@ -69,7 +68,6 @@ 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; @@ -80,12 +78,10 @@ public abstract class AbstractMinionBootstrapper { * Constructor * @param systemQueryIn salt service * @param saltApiIn salt service - * @param paygMgrIn cloudPaygManager */ - protected AbstractMinionBootstrapper(SystemQuery systemQueryIn, SaltApi saltApiIn, CloudPaygManager paygMgrIn) { + protected AbstractMinionBootstrapper(SystemQuery systemQueryIn, SaltApi saltApiIn) { this.saltApi = saltApiIn; this.systemQuery = systemQueryIn; - this.paygManager = paygMgrIn; } /** 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 c8f908c3e210..a07f73d96550 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,7 +19,6 @@ 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; @@ -49,10 +48,9 @@ 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, CloudPaygManager paygMgrIn) { - super(systemQueryIn, saltApiIn, paygMgrIn); + public RegularMinionBootstrapper(SystemQuery systemQueryIn, SaltApi saltApiIn) { + super(systemQueryIn, saltApiIn); } @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 e2f323ea7a47..15b3e10eff26 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,7 +23,6 @@ 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; @@ -61,10 +60,9 @@ 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, CloudPaygManager paygMgrIn) { - super(systemQueryIn, saltApiIn, paygMgrIn); + public SSHMinionBootstrapper(SystemQuery systemQueryIn, SaltApi saltApiIn) { + super(systemQueryIn, saltApiIn); } @Override @@ -138,7 +136,7 @@ protected BootstrapResult bootstrapInternal(BootstrapParameters params, User use // we want to override this in tests protected RegisterMinionEventMessageAction getRegisterAction() { - return new RegisterMinionEventMessageAction(systemQuery, saltApi, paygManager); + return new RegisterMinionEventMessageAction(systemQuery, saltApi); } /** 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 7758b69139e9..99460919b409 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,7 +26,6 @@ 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; @@ -58,7 +57,6 @@ public abstract class AbstractMinionBootstrapperTestBase extends JMockBaseTestCaseWithUser { protected SaltService saltServiceMock; - protected CloudPaygManager paygManager; // tested object, initialized in subclasses protected AbstractMinionBootstrapper bootstrapper; @@ -69,7 +67,6 @@ 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 90b37b3be4c0..5ffc2f69fda6 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, paygManager); + bootstrapper = new RegularMinionBootstrapper(saltServiceMock, saltServiceMock); } /** 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 06637f572b51..17808a34b179 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, paygManager); + bootstrapper = new SSHMinionBootstrapper(saltServiceMock, saltServiceMock); } @Override @@ -57,7 +57,7 @@ public void testBootstrapSuccess() throws Exception { private SSHMinionBootstrapper mockRegistrationBootstrapper( Optional activationKeyLabel) { - return new SSHMinionBootstrapper(saltServiceMock, saltServiceMock, paygManager) { + return new SSHMinionBootstrapper(saltServiceMock, saltServiceMock) { @Override protected RegisterMinionEventMessageAction getRegisterAction() { RegisterMinionEventMessageAction action = 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 7fca351123ab..7c6a9bdf10cc 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,7 +17,6 @@ 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; @@ -45,7 +44,6 @@ public class InputValidatorTest { private SaltApi saltApi = new TestSaltApi(); private SystemQuery systemQuery = new TestSystemQuery(); - private CloudPaygManager paygManager = new CloudPaygManager(); /** * Test the check for required fields. @@ -54,8 +52,7 @@ public class InputValidatorTest { public void testValidateBootstrapInputUserEmpty() { String json = "{user: ''}"; BootstrapHostsJson input = MinionsAPI.GSON.fromJson(json, BootstrapHostsJson.class); - BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi, paygManager) - .createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertEquals(2, validationErrors.size()); assertTrue(validationErrors.contains(HOST_ERROR_MESSAGE)); @@ -69,8 +66,7 @@ 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, paygManager) - .createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } @@ -82,8 +78,7 @@ 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, paygManager) - .createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } @@ -95,8 +90,7 @@ 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, paygManager) - .createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } @@ -108,8 +102,7 @@ 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, paygManager) - .createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } @@ -121,8 +114,7 @@ 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, paygManager) - .createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } @@ -134,8 +126,7 @@ 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, paygManager) - .createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertEquals(1, validationErrors.size()); assertTrue(validationErrors.contains(USER_ERROR_MESSAGE)); @@ -148,8 +139,7 @@ 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, paygManager) - .createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertEquals(1, validationErrors.size()); assertTrue(validationErrors.contains(HOST_ERROR_MESSAGE)); @@ -162,8 +152,7 @@ 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, paygManager) - .createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } @@ -175,8 +164,7 @@ 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, paygManager) - .createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } @@ -188,8 +176,7 @@ public void testValidateBootstrapInputHostIPv6() { public void testValidateBootstrapInputDefaultUser() { String json = "{}"; BootstrapHostsJson input = MinionsAPI.GSON.fromJson(json, BootstrapHostsJson.class); - BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi, paygManager) - .createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertEquals(1, validationErrors.size()); assertTrue(validationErrors.contains(HOST_ERROR_MESSAGE)); @@ -202,8 +189,7 @@ 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, paygManager) - .createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } @@ -215,8 +201,7 @@ 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, paygManager) - .createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } @@ -228,15 +213,14 @@ 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, paygManager) - .createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).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, paygManager).createBootstrapParams(input); + params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertEquals(1, validationErrors.size()); assertTrue(validationErrors.contains(PORT_ERROR_MESSAGE)); @@ -249,8 +233,7 @@ 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, paygManager) - .createBootstrapParams(input); + BootstrapParameters params = new RegularMinionBootstrapper(systemQuery, saltApi).createBootstrapParams(input); List validationErrors = InputValidator.INSTANCE.validateBootstrapInput(params); assertTrue(validationErrors.isEmpty()); } diff --git a/java/code/src/com/suse/scc/client/SCCClientFactory.java b/java/code/src/com/suse/scc/client/SCCClientFactory.java new file mode 100644 index 000000000000..250341e19141 --- /dev/null +++ b/java/code/src/com/suse/scc/client/SCCClientFactory.java @@ -0,0 +1,51 @@ +/* + * 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 24d6bd20cf6d..9ae67c1199d4 100644 --- a/java/code/src/com/suse/scc/client/SCCConfig.java +++ b/java/code/src/com/suse/scc/client/SCCConfig.java @@ -16,9 +16,6 @@ import java.net.URI; import java.net.URISyntaxException; -import java.util.HashMap; -import java.util.Map; -import java.util.Optional; /** * SCC configuration container class. @@ -60,8 +57,6 @@ 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; @@ -71,7 +66,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, null); + this(DEFAULT_URL, null, null, null, localResourcePathIn, DEFAULT_LOGGING_DIR, false); } /** @@ -82,20 +77,7 @@ 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, 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); + this(urlIn, usernameIn, passwordIn, uuidIn, null, DEFAULT_LOGGING_DIR, false); } /** @@ -108,25 +90,8 @@ 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, - Map additionalHeadersIn) { + String localResourcePathIn, String loggingDirIn, boolean skipOwnerIn) { url = urlIn; username = usernameIn; password = passwordIn; @@ -134,7 +99,6 @@ public SCCConfig(URI urlIn, String usernameIn, String passwordIn, String uuidIn, localResourcePath = localResourcePathIn; loggingDir = loggingDirIn; skipOwner = skipOwnerIn; - additionalHeaders = additionalHeadersIn; } /** @@ -191,11 +155,4 @@ 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 c8e4fc77dfea..558372d1f250 100644 --- a/java/code/src/com/suse/scc/client/SCCRequestFactory.java +++ b/java/code/src/com/suse/scc/client/SCCRequestFactory.java @@ -20,8 +20,6 @@ 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. */ @@ -75,11 +73,6 @@ 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 819a0e931655..dac56dd59de2 100644 --- a/java/code/src/com/suse/scc/test/SCCClientTest.java +++ b/java/code/src/com/suse/scc/test/SCCClientTest.java @@ -25,8 +25,7 @@ import com.suse.scc.client.SCCClient; import com.suse.scc.client.SCCClientException; -import com.suse.scc.client.SCCConfig; -import com.suse.scc.client.SCCFileClient; +import com.suse.scc.client.SCCClientFactory; import com.suse.scc.model.SCCProductJson; import com.suse.scc.model.SCCRepositoryJson; import com.suse.scc.model.SCCSubscriptionJson; @@ -218,7 +217,8 @@ public void testListRepositoriesFromDirectory() throws Exception { "/com/suse/scc/test/connect/organizations/repositories.json"), new File(tmpDir.getAbsolutePath() + "/organizations_repositories.json")); try { - SCCClient scc = new SCCFileClient(new SCCConfig(tmpDir.getAbsolutePath())); + SCCClient scc = SCCClientFactory.getInstance(null, null, null, + tmpDir.getAbsolutePath(), null); List repos = scc.listRepositories(); // Assertions diff --git a/java/conf/log4j2.xml.taskomatic b/java/conf/log4j2.xml.taskomatic index 6698107f0381..3766c60017c7 100644 --- a/java/conf/log4j2.xml.taskomatic +++ b/java/conf/log4j2.xml.taskomatic @@ -7,17 +7,6 @@ - - - - - - - - - - - - - - - - - - diff --git a/java/spacewalk-java.changes.mackdk.payg-part1 b/java/spacewalk-java.changes.mackdk.payg-part1 deleted file mode 100644 index f078ba669efc..000000000000 --- a/java/spacewalk-java.changes.mackdk.payg-part1 +++ /dev/null @@ -1 +0,0 @@ -- Added taskomatic job to compute and store billing dimensions for PAYG diff --git a/java/spacewalk-java.changes.mcalmer.payg-part1 b/java/spacewalk-java.changes.mcalmer.payg-part1 deleted file mode 100644 index 56225334512e..000000000000 --- a/java/spacewalk-java.changes.mcalmer.payg-part1 +++ /dev/null @@ -1,3 +0,0 @@ -- 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/python/billingdataservice/LICENSE b/python/billingdataservice/LICENSE deleted file mode 100644 index d159169d1050..000000000000 --- a/python/billingdataservice/LICENSE +++ /dev/null @@ -1,339 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. diff --git a/python/billingdataservice/billing-data-service b/python/billingdataservice/billing-data-service deleted file mode 100644 index e95928f95bfb..000000000000 --- a/python/billingdataservice/billing-data-service +++ /dev/null @@ -1,17 +0,0 @@ -#!/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 deleted file mode 100644 index cc733b5d6bd5..000000000000 --- a/python/billingdataservice/billing-data-service.changes +++ /dev/null @@ -1,5 +0,0 @@ -------------------------------------------------------------------- -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.mcalmer.payg-part1 b/python/billingdataservice/billing-data-service.changes.mcalmer.payg-part1 deleted file mode 100644 index 434fcf5c2629..000000000000 --- a/python/billingdataservice/billing-data-service.changes.mcalmer.payg-part1 +++ /dev/null @@ -1 +0,0 @@ -- show data for managed systems and monitored systems diff --git a/python/billingdataservice/billing-data-service.service b/python/billingdataservice/billing-data-service.service deleted file mode 100644 index 750d177068a2..000000000000 --- a/python/billingdataservice/billing-data-service.service +++ /dev/null @@ -1,13 +0,0 @@ -[Unit] -Description=SUSE Manager PAYG billing data service -After=local-fs.target network.target postgresql.service -Before=tomcat.service taskomatic.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 deleted file mode 100644 index cb53b3a49f6e..000000000000 --- a/python/billingdataservice/billing-data-service.spec +++ /dev/null @@ -1,85 +0,0 @@ -# -# 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: python3-Flask -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 deleted file mode 100644 index f6b7c311bc28..000000000000 --- a/python/billingdataservice/billing-data-service.sysconfig +++ /dev/null @@ -1,31 +0,0 @@ -## 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 deleted file mode 100644 index 8a630a4c53bc..000000000000 --- a/python/billingdataservice/billingdataservice.py +++ /dev/null @@ -1,53 +0,0 @@ -# -# 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, 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({ "dimensions" : result}) diff --git a/python/billingdataservice/payg-service-override.conf b/python/billingdataservice/payg-service-override.conf deleted file mode 100644 index d79715b4133d..000000000000 --- a/python/billingdataservice/payg-service-override.conf +++ /dev/null @@ -1,2 +0,0 @@ -[Unit] -Requires=billing-data-service.service diff --git a/python/billingdataservice/pytest_cleanup.sh b/python/billingdataservice/pytest_cleanup.sh deleted file mode 100755 index 43d086e7e173..000000000000 --- a/python/billingdataservice/pytest_cleanup.sh +++ /dev/null @@ -1,8 +0,0 @@ -#! /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 deleted file mode 100755 index f9ae6a63175f..000000000000 --- a/python/billingdataservice/pytest_setup.sh +++ /dev/null @@ -1,7 +0,0 @@ -#! /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 deleted file mode 100644 index f45108aa92ea..000000000000 --- a/python/billingdataservice/tests/test_billing.py +++ /dev/null @@ -1,53 +0,0 @@ -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 = [{"dimension": "1", "count": "10"}, {"dimension": "2", "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=[{"dimension": "1", "count": "10"}, {"dimension": "2", "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 "dimensions" in r - for dim in r["dimensions"]: - assert "dimension" in dim - if dim["dimension"] == "1": - assert dim["count"] == "10" - elif dim["dimension"] == "2": - assert dim["count"] == "5" - else: - assert False - - diff --git a/python/spacewalk/satellite_tools/repo_plugins/yum_src.py b/python/spacewalk/satellite_tools/repo_plugins/yum_src.py index 915993ef45e2..e57293175668 100644 --- a/python/spacewalk/satellite_tools/repo_plugins/yum_src.py +++ b/python/spacewalk/satellite_tools/repo_plugins/yum_src.py @@ -741,36 +741,16 @@ 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, - netloc, + parsed_url.netloc, parsed_url.path, parsed_url.params, combined_query, diff --git a/python/spacewalk/spacewalk-backend.changes.mcalmer.payg-part1 b/python/spacewalk/spacewalk-backend.changes.mcalmer.payg-part1 deleted file mode 100644 index 4c021ea4255c..000000000000 --- a/python/spacewalk/spacewalk-backend.changes.mcalmer.payg-part1 +++ /dev/null @@ -1 +0,0 @@ -- use credentials file for reposync if password is in URL 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 e3049df2184c..591881dc94dd 100644 --- a/python/test/unit/spacewalk/satellite_tools/test_yum_src.py +++ b/python/test/unit/spacewalk/satellite_tools/test_yum_src.py @@ -27,12 +27,6 @@ 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 @@ -392,8 +386,7 @@ 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), - ("https://user:password@example.org/repo/path/", False) + ("uln:///channel", True) ] proxy_url = "http://proxy.example.com:8080" proxy_user = "user" @@ -401,7 +394,6 @@ 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: @@ -409,32 +401,16 @@ def test_prep_zypp_repo_url_with_proxy(self): else: separator = "?" - 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, + expected_url = "{}{}proxy={}&proxyuser={}&proxypass={}".format(url, separator, quote(proxy_url), proxy_user, - proxy_pass, - extra_query + proxy_pass ) - 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) - assert expected_url == comp_url + comp_url = cs._prep_zypp_repo_url(url, is_uln) + + assert expected_url == comp_url def test_update_notice_parse(self): update_notice_xml = StringIO( diff --git a/rel-eng/packages/billing-data-service b/rel-eng/packages/billing-data-service deleted file mode 100644 index 655998b7c27b..000000000000 --- a/rel-eng/packages/billing-data-service +++ /dev/null @@ -1 +0,0 @@ -0.1-1 python/billingdataservice/ diff --git a/schema/spacewalk/common/data/rhnTaskoBunch.sql b/schema/spacewalk/common/data/rhnTaskoBunch.sql index a3de2ec634cf..1d24c9b5e310 100644 --- a/schema/spacewalk/common/data/rhnTaskoBunch.sql +++ b/schema/spacewalk/common/data/rhnTaskoBunch.sql @@ -138,7 +138,4 @@ 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 4cafdef5b603..2ef95c3cf646 100644 --- a/schema/spacewalk/common/data/rhnTaskoSchedule.sql +++ b/schema/spacewalk/common/data/rhnTaskoSchedule.sql @@ -66,11 +66,6 @@ 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) @@ -85,21 +80,6 @@ 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'), @@ -110,11 +90,16 @@ 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) @@ -151,11 +136,6 @@ 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'), @@ -166,16 +146,31 @@ 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 9901feb20f34..a1fccf949dab 100644 --- a/schema/spacewalk/common/data/rhnTaskoTask.sql +++ b/schema/spacewalk/common/data/rhnTaskoTask.sql @@ -143,7 +143,4 @@ 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 05ff9b3a807a..8c75647203e4 100644 --- a/schema/spacewalk/common/data/rhnTaskoTemplate.sql +++ b/schema/spacewalk/common/data/rhnTaskoTemplate.sql @@ -315,11 +315,4 @@ 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/tables/rhnTaskoTask.sql b/schema/spacewalk/common/tables/rhnTaskoTask.sql index 231814debcb7..6780093c2526 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(120) NOT NULL, + class VARCHAR(60) 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 deleted file mode 100644 index ecf0758e037d..000000000000 --- a/schema/spacewalk/common/tables/susePaygDimensionComputation.sql +++ /dev/null @@ -1,23 +0,0 @@ --- --- 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 deleted file mode 100644 index 151542d72cf1..000000000000 --- a/schema/spacewalk/common/tables/susePaygDimensionResult.sql +++ /dev/null @@ -1,23 +0,0 @@ --- --- 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/tables.deps b/schema/spacewalk/common/tables/tables.deps index 11c648615e66..30e9eb54bbaf 100644 --- a/schema/spacewalk/common/tables/tables.deps +++ b/schema/spacewalk/common/tables/tables.deps @@ -288,4 +288,3 @@ 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 deleted file mode 100644 index 1678dabb69ca..000000000000 --- a/schema/spacewalk/postgres/class/billing_dimension_t.sql +++ /dev/null @@ -1,4 +0,0 @@ -CREATE TYPE billing_dimension_t AS ENUM ( - 'managed_systems', - 'monitoring' -); diff --git a/schema/spacewalk/susemanager-schema.changes.mackdk.payg-part1 b/schema/spacewalk/susemanager-schema.changes.mackdk.payg-part1 deleted file mode 100644 index 65a6d89e6b2d..000000000000 --- a/schema/spacewalk/susemanager-schema.changes.mackdk.payg-part1 +++ /dev/null @@ -1,2 +0,0 @@ -- Added new tables to handle PAYG instances computations -- Added PAYG dimension computation taskomatic job configuration 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 deleted file mode 100644 index b060e37e9f48..000000000000 --- a/schema/spacewalk/upgrade/susemanager-schema-4.4.6-to-susemanager-schema-4.4.7/200-payg-add-computation-tables.sql +++ /dev/null @@ -1,37 +0,0 @@ -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 deleted file mode 100644 index 30996180fc16..000000000000 --- a/schema/spacewalk/upgrade/susemanager-schema-4.4.6-to-susemanager-schema-4.4.7/201-payg-taskomatic.sql +++ /dev/null @@ -1,38 +0,0 @@ -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/spacewalk/admin/Makefile.admin b/spacewalk/admin/Makefile.admin index 82da5f8ad3ef..56c6a0c106c0 100644 --- a/spacewalk/admin/Makefile.admin +++ b/spacewalk/admin/Makefile.admin @@ -41,8 +41,7 @@ CONF_FILES = SYSTEMD_FILES = spacewalk.target spacewalk-wait-for-tomcat.service spacewalk-wait-for-salt.service \ spacewalk-wait-for-taskomatic.service salt-secrets-config.service \ - mgr-websockify.service uyuni-check-database.service uyuni-update-config.service cobbler-refresh-mkloaders.service \ - mgr-check-payg.service + mgr-websockify.service uyuni-check-database.service uyuni-update-config.service cobbler-refresh-mkloaders.service SYSTEMD_OVERRIDE_SERVICES = tomcat.service apache2.service salt-master.service salt-api.service rhn-search.service \ taskomatic.service salt-secrets-config.service cobbler-refresh-mkloaders.service diff --git a/spacewalk/admin/mgr-check-payg.service b/spacewalk/admin/mgr-check-payg.service deleted file mode 100644 index 160ba14932fe..000000000000 --- a/spacewalk/admin/mgr-check-payg.service +++ /dev/null @@ -1,9 +0,0 @@ -[Unit] -Description=Check and install payg billing service. -Before=tomcat.service -Before=taskomatic.service - -[Service] -ExecStart=/usr/sbin/spacewalk-startup-helper check-billing-service -Type=oneshot -RemainAfterExit=yes diff --git a/spacewalk/admin/spacewalk-admin.changes.lucidd.payg-part1 b/spacewalk/admin/spacewalk-admin.changes.lucidd.payg-part1 deleted file mode 100644 index 688d638d9016..000000000000 --- a/spacewalk/admin/spacewalk-admin.changes.lucidd.payg-part1 +++ /dev/null @@ -1 +0,0 @@ -- add mgr-check-payg service diff --git a/spacewalk/admin/spacewalk-admin.spec b/spacewalk/admin/spacewalk-admin.spec index ce900468342f..d147182f200e 100644 --- a/spacewalk/admin/spacewalk-admin.spec +++ b/spacewalk/admin/spacewalk-admin.spec @@ -109,7 +109,6 @@ 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 23fd0bb79c37..607c2f0275c3 100755 --- a/spacewalk/admin/spacewalk-startup-helper +++ b/spacewalk/admin/spacewalk-startup-helper @@ -26,32 +26,6 @@ perform_report_db_schema_upgrade() { fi } -isPayg() { - # todo: improve this once the real check is available - test -f "/usr/share/susemanager/.ispayg" -} - -check_billing_service() { - PACKAGE_NAME=billing-data-service - isPayg - if [ $? -eq 0 ]; then - - rpm -q $PACKAGE_NAME - if [ $? -ne 0 ]; then - echo "Billing Service not installed. Installing now..." - zypper --non-interactive install $PACKAGE_NAME - systemctl start $PACKAGE_NAME - fi - - systemctl is-active --quiet $PACKAGE_NAME - if [ $? -ne 0 ]; then - echo "Billing Service needs to be running." - exit 1 - fi - - fi -} - 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) @@ -254,5 +228,4 @@ 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 8cc62b6cd735..246ead37fec0 100644 --- a/spacewalk/admin/spacewalk.target +++ b/spacewalk/admin/spacewalk.target @@ -1,6 +1,5 @@ [Unit] Description=Spacewalk -Requires=mgr-check-payg.service Requires=uyuni-update-config.service Requires=uyuni-check-database.service Requires=tomcat.service diff --git a/web/html/src/manager/admin/payg-shared/info/payg-info-edit.tsx b/web/html/src/manager/admin/payg-shared/info/payg-info-edit.tsx index c9f93df57657..71e6326e3b27 100644 --- a/web/html/src/manager/admin/payg-shared/info/payg-info-edit.tsx +++ b/web/html/src/manager/admin/payg-shared/info/payg-info-edit.tsx @@ -12,7 +12,7 @@ import { Loading } from "components/utils"; type Props = { payg: PaygFullType; onChange: Function; - readOnly?: boolean; + editing?: boolean; }; const PaygInfoEdit = (props: Props) => { @@ -46,7 +46,6 @@ const PaygInfoEdit = (props: Props) => { setItem(props.payg); setErrors(null); }} - disableEditing={props.readOnly} renderContent={() => ( diff --git a/web/html/src/manager/admin/payg-shared/sshData/payg-ssh-data-edit.tsx b/web/html/src/manager/admin/payg-shared/sshData/payg-ssh-data-edit.tsx index 8daa10985b22..1abbd4b9ea98 100644 --- a/web/html/src/manager/admin/payg-shared/sshData/payg-ssh-data-edit.tsx +++ b/web/html/src/manager/admin/payg-shared/sshData/payg-ssh-data-edit.tsx @@ -15,7 +15,7 @@ type Props = { isInstance: boolean; labelPrefix: string; onChange: Function; - readOnly?: boolean; + editing?: boolean; }; const PaygSshDataEdit = (props: Props) => { @@ -60,7 +60,6 @@ const PaygSshDataEdit = (props: Props) => { setItem(props.paygSshData); setErrors(null); }} - disableEditing={props.readOnly} renderContent={() => ( diff --git a/web/html/src/manager/admin/payg/payg.renderer.tsx b/web/html/src/manager/admin/payg/payg.renderer.tsx index 8f5afb91b0b2..44ef0e7d1ec2 100644 --- a/web/html/src/manager/admin/payg/payg.renderer.tsx +++ b/web/html/src/manager/admin/payg/payg.renderer.tsx @@ -10,10 +10,9 @@ import Pyag from "./payg"; type RendererProps = { payg?: string; wasFreshlyCreatedMessage?: string; - readOnly?: boolean; }; -export const renderer = (id: string, { payg, wasFreshlyCreatedMessage, readOnly }: RendererProps = {}) => { +export const renderer = (id: string, { payg, wasFreshlyCreatedMessage }: RendererProps = {}) => { let paygJson: any = {}; try { paygJson = JSON.parse(payg || ""); @@ -24,11 +23,7 @@ export const renderer = (id: string, { payg, wasFreshlyCreatedMessage, readOnly SpaRenderer.renderNavigationReact( - + , document.getElementById(id) ); diff --git a/web/html/src/manager/admin/payg/payg.tsx b/web/html/src/manager/admin/payg/payg.tsx index 8ec61dd557eb..debf32e69c9d 100644 --- a/web/html/src/manager/admin/payg/payg.tsx +++ b/web/html/src/manager/admin/payg/payg.tsx @@ -42,7 +42,6 @@ export type PaygFullType = { type Props = { payg: PaygFullType; wasFreshlyCreatedMessage?: string; - readOnly?: boolean; }; const Payg = (props: Props) => { @@ -68,13 +67,7 @@ const Payg = (props: Props) => { title={t("Instance Hostname: {0}", payg.properties.host)} button={
- +
} > @@ -98,7 +91,6 @@ const Payg = (props: Props) => { /> { setPayg(projectWithNewProperties); cancelAction(); @@ -109,7 +101,7 @@ const Payg = (props: Props) => { paygId={payg.id} isInstance={true} labelPrefix={"Instance"} - readOnly={props.readOnly} + editing={true} onChange={(projectWithNewProperties) => { setPayg(projectWithNewProperties); cancelAction(); @@ -120,7 +112,7 @@ const Payg = (props: Props) => { paygId={payg.id} isInstance={false} labelPrefix={"Bastion"} - readOnly={props.readOnly} + editing={true} onChange={(projectWithNewProperties) => { setPayg(projectWithNewProperties); cancelAction(); diff --git a/web/spacewalk-web.changes.mcalmer.payg-part1 b/web/spacewalk-web.changes.mcalmer.payg-part1 deleted file mode 100644 index acf5c48a1e32..000000000000 --- a/web/spacewalk-web.changes.mcalmer.payg-part1 +++ /dev/null @@ -1 +0,0 @@ -- disable editing for special local payg connection