Enum OperatorActionCategories
- java.lang.Object
-
- java.lang.Enum<OperatorActionCategories>
-
- com.oracle.bmc.operatoraccesscontrol.model.OperatorActionCategories
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<OperatorActionCategories>
@Generated(value="OracleSDKGenerator", comments="API Version: 20200630") public enum OperatorActionCategories extends Enum<OperatorActionCategories> implements BmcEnum
Operator action categories - "Service Diagnostics: Allows non-privileged read-only access to the layer of the system.No privileged commands are available under this operator action." - “Service Management: Allows non-root services to be restarted and maintained.” - “System Management: Allows root services pertinent to the layer to be restarted, all processes to be restarted.” - “Full Administration: Allows full root access without any constraints.” - “Cell Management: Only applicable to cell server layer of Exadata. Allows cell management actions.”
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Cellmanagement
Fulladministration
Servicediagnostics
Servicemanagement
Systemmanagement
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperatorActionCategories
create(String key)
String
getValue()
static OperatorActionCategories
valueOf(String name)
Returns the enum constant of this type with the specified name.static OperatorActionCategories[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Servicediagnostics
public static final OperatorActionCategories Servicediagnostics
-
Servicemanagement
public static final OperatorActionCategories Servicemanagement
-
Systemmanagement
public static final OperatorActionCategories Systemmanagement
-
Fulladministration
public static final OperatorActionCategories Fulladministration
-
Cellmanagement
public static final OperatorActionCategories Cellmanagement
-
-
Method Detail
-
values
public static OperatorActionCategories[] 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 (OperatorActionCategories c : OperatorActionCategories.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperatorActionCategories 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 OperatorActionCategories create(String key)
-
-