Enum DataCollectionModes
- java.lang.Object
-
- java.lang.Enum<DataCollectionModes>
-
- com.oracle.bmc.fleetsoftwareupdate.model.DataCollectionModes
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<DataCollectionModes>
@Generated(value="OracleSDKGenerator", comments="API Version: 20220528") public enum DataCollectionModes extends Enum<DataCollectionModes> implements BmcEnum
Exadata Fleet Update Maintenance Cycle incident logs and trace collection operation modes.ENABLE: Enable diagnostics log collection for all targets for easy troubleshooting and Oracle support for this Exadata Fleet Update Maintenance Cycle and future Exadata Fleet Update Actions. ENABLE_AND_RESTORE: Enable diagnostic log collection for all targets only for the current Exadata Fleet Update Maintenance Cycle. After cycle finishes, log collection settings will go back to the settings prior to the start of the Exadata Fleet Update Maintenance Cycle. NO_CHANGE: Use existing diagnostic log collection settings on each VM Cluster. Collect logs for targets with diagnostic log collection for targets with log collection already enabled.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Enable
EnableAndRestore
NoChange
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DataCollectionModes
create(String key)
String
getValue()
static DataCollectionModes
valueOf(String name)
Returns the enum constant of this type with the specified name.static DataCollectionModes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Enable
public static final DataCollectionModes Enable
-
EnableAndRestore
public static final DataCollectionModes EnableAndRestore
-
NoChange
public static final DataCollectionModes NoChange
-
UnknownEnumValue
public static final DataCollectionModes UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static DataCollectionModes[] 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 (DataCollectionModes c : DataCollectionModes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataCollectionModes 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 DataCollectionModes create(String key)
-
-