DbSystemUpgradeSummary¶
-
class
oci.database.models.
DbSystemUpgradeSummary
(**kwargs)¶ Bases:
object
It describes the various upgrade properties such as component, osversion, giversion for any VM DB system.
Attributes
COMPONENT_GI
A constant which can be used with the component property of a DbSystemUpgradeSummary. COMPONENT_OS
A constant which can be used with the component property of a DbSystemUpgradeSummary. COMPONENT_OS_GI
A constant which can be used with the component property of a DbSystemUpgradeSummary. component
[Required] Gets the component of this DbSystemUpgradeSummary. gi_version
Gets the gi_version of this DbSystemUpgradeSummary. os_version
Gets the os_version of this DbSystemUpgradeSummary. Methods
__init__
(**kwargs)Initializes a new DbSystemUpgradeSummary object with values from keyword arguments. -
COMPONENT_GI
= 'GI'¶ A constant which can be used with the component property of a DbSystemUpgradeSummary. This constant has a value of “GI”
-
COMPONENT_OS
= 'OS'¶ A constant which can be used with the component property of a DbSystemUpgradeSummary. This constant has a value of “OS”
-
COMPONENT_OS_GI
= 'OS_GI'¶ A constant which can be used with the component property of a DbSystemUpgradeSummary. This constant has a value of “OS_GI”
-
__init__
(**kwargs)¶ Initializes a new DbSystemUpgradeSummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - component (str) – The value to assign to the component property of this DbSystemUpgradeSummary. Allowed values for this property are: “OS”, “OS_GI”, “GI”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- os_version (str) – The value to assign to the os_version property of this DbSystemUpgradeSummary.
- gi_version (str) – The value to assign to the gi_version property of this DbSystemUpgradeSummary.
-
component
¶ [Required] Gets the component of this DbSystemUpgradeSummary. The component on which upgrade is applicable. OS (Operating System upgrade), GI (Grid Infrastructure upgrade) or OS_GI (both Operating System and Grid Infrastructure upgrade)
Allowed values for this property are: “OS”, “OS_GI”, “GI”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The component of this DbSystemUpgradeSummary. Return type: str
-
gi_version
¶ Gets the gi_version of this DbSystemUpgradeSummary. The version of the grid infrastructure for this upgrade. This is only applicable for ASM based DbSystems
Returns: The gi_version of this DbSystemUpgradeSummary. Return type: str
-
os_version
¶ Gets the os_version of this DbSystemUpgradeSummary. The version of the OS for this upgrade eg. Oracle Linux Server release 7.9
Returns: The os_version of this DbSystemUpgradeSummary. Return type: str
-