UpdatablePackageSummary

class oci.os_management_hub.models.UpdatablePackageSummary(**kwargs)

Bases: oci.os_management_hub.models.package_summary.PackageSummary

Provides summary information for a software package available for installation on a managed instance.

Attributes

ARCHITECTURE_AARCH64 str(object=’’) -> str
ARCHITECTURE_I686 str(object=’’) -> str
ARCHITECTURE_NOARCH str(object=’’) -> str
ARCHITECTURE_SRC str(object=’’) -> str
ARCHITECTURE_X86_64 str(object=’’) -> str
PACKAGE_CLASSIFICATION_AVAILABLE str(object=’’) -> str
PACKAGE_CLASSIFICATION_INSTALLED str(object=’’) -> str
PACKAGE_CLASSIFICATION_UPDATABLE str(object=’’) -> str
UPDATE_TYPE_BUGFIX A constant which can be used with the update_type property of a UpdatablePackageSummary.
UPDATE_TYPE_ENHANCEMENT A constant which can be used with the update_type property of a UpdatablePackageSummary.
UPDATE_TYPE_OTHER A constant which can be used with the update_type property of a UpdatablePackageSummary.
UPDATE_TYPE_SECURITY A constant which can be used with the update_type property of a UpdatablePackageSummary.
architecture Gets the architecture of this PackageSummary.
display_name [Required] Gets the display_name of this PackageSummary.
errata Gets the errata of this UpdatablePackageSummary.
installed_version Gets the installed_version of this UpdatablePackageSummary.
name [Required] Gets the name of this PackageSummary.
package_classification [Required] Gets the package_classification of this PackageSummary.
related_cves Gets the related_cves of this UpdatablePackageSummary.
software_sources Gets the software_sources of this PackageSummary.
type [Required] Gets the type of this PackageSummary.
update_type [Required] Gets the update_type of this UpdatablePackageSummary.
version [Required] Gets the version of this PackageSummary.

Methods

__init__(**kwargs) Initializes a new UpdatablePackageSummary object with values from keyword arguments.
get_subtype(object_dictionary) Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
ARCHITECTURE_AARCH64 = 'AARCH64'
ARCHITECTURE_I686 = 'I686'
ARCHITECTURE_NOARCH = 'NOARCH'
ARCHITECTURE_SRC = 'SRC'
ARCHITECTURE_X86_64 = 'X86_64'
PACKAGE_CLASSIFICATION_AVAILABLE = 'AVAILABLE'
PACKAGE_CLASSIFICATION_INSTALLED = 'INSTALLED'
PACKAGE_CLASSIFICATION_UPDATABLE = 'UPDATABLE'
UPDATE_TYPE_BUGFIX = 'BUGFIX'

A constant which can be used with the update_type property of a UpdatablePackageSummary. This constant has a value of “BUGFIX”

UPDATE_TYPE_ENHANCEMENT = 'ENHANCEMENT'

A constant which can be used with the update_type property of a UpdatablePackageSummary. This constant has a value of “ENHANCEMENT”

UPDATE_TYPE_OTHER = 'OTHER'

A constant which can be used with the update_type property of a UpdatablePackageSummary. This constant has a value of “OTHER”

UPDATE_TYPE_SECURITY = 'SECURITY'

A constant which can be used with the update_type property of a UpdatablePackageSummary. This constant has a value of “SECURITY”

__init__(**kwargs)

Initializes a new UpdatablePackageSummary object with values from keyword arguments. The default value of the package_classification attribute of this class is UPDATABLE and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • display_name (str) – The value to assign to the display_name property of this UpdatablePackageSummary.
  • name (str) – The value to assign to the name property of this UpdatablePackageSummary.
  • type (str) – The value to assign to the type property of this UpdatablePackageSummary.
  • version (str) – The value to assign to the version property of this UpdatablePackageSummary.
  • architecture (str) – The value to assign to the architecture property of this UpdatablePackageSummary. Allowed values for this property are: “X86_64”, “AARCH64”, “I686”, “NOARCH”, “SRC”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
  • software_sources (list[oci.os_management_hub.models.SoftwareSourceDetails]) – The value to assign to the software_sources property of this UpdatablePackageSummary.
  • package_classification (str) – The value to assign to the package_classification property of this UpdatablePackageSummary. Allowed values for this property are: “INSTALLED”, “AVAILABLE”, “UPDATABLE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
  • installed_version (str) – The value to assign to the installed_version property of this UpdatablePackageSummary.
  • update_type (str) – The value to assign to the update_type property of this UpdatablePackageSummary. Allowed values for this property are: “SECURITY”, “BUGFIX”, “ENHANCEMENT”, “OTHER”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
  • errata (list[str]) – The value to assign to the errata property of this UpdatablePackageSummary.
  • related_cves (list[str]) – The value to assign to the related_cves property of this UpdatablePackageSummary.
architecture

Gets the architecture of this PackageSummary. The architecture for which this package was built.

Allowed values for this property are: “X86_64”, “AARCH64”, “I686”, “NOARCH”, “SRC”

Returns:The architecture of this PackageSummary.
Return type:str
display_name

[Required] Gets the display_name of this PackageSummary. Package name.

Returns:The display_name of this PackageSummary.
Return type:str
errata

Gets the errata of this UpdatablePackageSummary. List of errata applicable to this update.

Returns:The errata of this UpdatablePackageSummary.
Return type:list[str]
static get_subtype(object_dictionary)

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.

installed_version

Gets the installed_version of this UpdatablePackageSummary. The version of the package that is currently installed on the instance.

Returns:The installed_version of this UpdatablePackageSummary.
Return type:str
name

[Required] Gets the name of this PackageSummary. Unique identifier for the package.

Returns:The name of this PackageSummary.
Return type:str
package_classification

[Required] Gets the package_classification of this PackageSummary. Status of the software package.

Allowed values for this property are: “INSTALLED”, “AVAILABLE”, “UPDATABLE”

Returns:The package_classification of this PackageSummary.
Return type:str
related_cves

Gets the related_cves of this UpdatablePackageSummary. List of CVEs applicable to this erratum.

Returns:The related_cves of this UpdatablePackageSummary.
Return type:list[str]
software_sources

Gets the software_sources of this PackageSummary. List of software sources that provide the software package.

Returns:The software_sources of this PackageSummary.
Return type:list[oci.os_management_hub.models.SoftwareSourceDetails]
type

[Required] Gets the type of this PackageSummary. Type of the package.

Returns:The type of this PackageSummary.
Return type:str
update_type

[Required] Gets the update_type of this UpdatablePackageSummary. The type of update.

Allowed values for this property are: “SECURITY”, “BUGFIX”, “ENHANCEMENT”, “OTHER”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The update_type of this UpdatablePackageSummary.
Return type:str
version

[Required] Gets the version of this PackageSummary. Version of the installed package.

Returns:The version of this PackageSummary.
Return type:str