ManagedInstanceErratumSummary¶
- 
class oci.os_management_hub.models.ManagedInstanceErratumSummary(**kwargs)¶
- Bases: - object- Provides summary information about an erratum associated with a managed instance. - Attributes - ADVISORY_TYPE_BUGFIX- A constant which can be used with the advisory_type property of a ManagedInstanceErratumSummary. - ADVISORY_TYPE_ENHANCEMENT- A constant which can be used with the advisory_type property of a ManagedInstanceErratumSummary. - ADVISORY_TYPE_OTHER- A constant which can be used with the advisory_type property of a ManagedInstanceErratumSummary. - ADVISORY_TYPE_SECURITY- A constant which can be used with the advisory_type property of a ManagedInstanceErratumSummary. - advisory_type- [Required] Gets the advisory_type of this ManagedInstanceErratumSummary. - name- [Required] Gets the name of this ManagedInstanceErratumSummary. - packages- [Required] Gets the packages of this ManagedInstanceErratumSummary. - related_cves- Gets the related_cves of this ManagedInstanceErratumSummary. - synopsis- Gets the synopsis of this ManagedInstanceErratumSummary. - time_issued- Gets the time_issued of this ManagedInstanceErratumSummary. - Methods - __init__(**kwargs)- Initializes a new ManagedInstanceErratumSummary object with values from keyword arguments. - 
ADVISORY_TYPE_BUGFIX= 'BUGFIX'¶
- A constant which can be used with the advisory_type property of a ManagedInstanceErratumSummary. This constant has a value of “BUGFIX” 
 - 
ADVISORY_TYPE_ENHANCEMENT= 'ENHANCEMENT'¶
- A constant which can be used with the advisory_type property of a ManagedInstanceErratumSummary. This constant has a value of “ENHANCEMENT” 
 - 
ADVISORY_TYPE_OTHER= 'OTHER'¶
- A constant which can be used with the advisory_type property of a ManagedInstanceErratumSummary. This constant has a value of “OTHER” 
 - 
ADVISORY_TYPE_SECURITY= 'SECURITY'¶
- A constant which can be used with the advisory_type property of a ManagedInstanceErratumSummary. This constant has a value of “SECURITY” 
 - 
__init__(**kwargs)¶
- Initializes a new ManagedInstanceErratumSummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - name (str) – The value to assign to the name property of this ManagedInstanceErratumSummary.
- advisory_type (str) – The value to assign to the advisory_type property of this ManagedInstanceErratumSummary. 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’.
- time_issued (datetime) – The value to assign to the time_issued property of this ManagedInstanceErratumSummary.
- synopsis (str) – The value to assign to the synopsis property of this ManagedInstanceErratumSummary.
- related_cves (list[str]) – The value to assign to the related_cves property of this ManagedInstanceErratumSummary.
- packages (list[oci.os_management_hub.models.PackageNameSummary]) – The value to assign to the packages property of this ManagedInstanceErratumSummary.
 
 - 
advisory_type¶
- [Required] Gets the advisory_type of this ManagedInstanceErratumSummary. The advisory type of the erratum. - 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 advisory_type of this ManagedInstanceErratumSummary. - Return type: - str 
 - 
name¶
- [Required] Gets the name of this ManagedInstanceErratumSummary. The identifier of the erratum. - Returns: - The name of this ManagedInstanceErratumSummary. - Return type: - str 
 - 
packages¶
- [Required] Gets the packages of this ManagedInstanceErratumSummary. The list of packages affected by this erratum. - Returns: - The packages of this ManagedInstanceErratumSummary. - Return type: - list[oci.os_management_hub.models.PackageNameSummary] 
 - Gets the related_cves of this ManagedInstanceErratumSummary. The list of CVEs applicable to this erratum. - Returns: - The related_cves of this ManagedInstanceErratumSummary. - Return type: - list[str] 
 - 
synopsis¶
- Gets the synopsis of this ManagedInstanceErratumSummary. A summary description of the erratum. - Returns: - The synopsis of this ManagedInstanceErratumSummary. - Return type: - str 
 
-