Package com.oracle.bmc.database.model
Enum ExecuteDbSystemOsPatchDetails.Action
- java.lang.Object
-
- java.lang.Enum<ExecuteDbSystemOsPatchDetails.Action>
-
- com.oracle.bmc.database.model.ExecuteDbSystemOsPatchDetails.Action
-
- All Implemented Interfaces:
BmcEnum,Serializable,Comparable<ExecuteDbSystemOsPatchDetails.Action>
- Enclosing class:
- ExecuteDbSystemOsPatchDetails
public static enum ExecuteDbSystemOsPatchDetails.Action extends Enum<ExecuteDbSystemOsPatchDetails.Action> implements BmcEnum
Operation system (OS) patch action to perform * PRECHECK: No changes applied; runs validation/dry run.- APPLY: Installs updates; may require a reboot (see OS patch history entry details to determine isRebootRequired).
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExecuteDbSystemOsPatchDetails.Actioncreate(String key)StringgetValue()static ExecuteDbSystemOsPatchDetails.ActionvalueOf(String name)Returns the enum constant of this type with the specified name.static ExecuteDbSystemOsPatchDetails.Action[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Precheck
public static final ExecuteDbSystemOsPatchDetails.Action Precheck
-
Apply
public static final ExecuteDbSystemOsPatchDetails.Action Apply
-
-
Method Detail
-
values
public static ExecuteDbSystemOsPatchDetails.Action[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ExecuteDbSystemOsPatchDetails.Action c : ExecuteDbSystemOsPatchDetails.Action.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExecuteDbSystemOsPatchDetails.Action valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
create
public static ExecuteDbSystemOsPatchDetails.Action create(String key)
-
-