Package com.oracle.bmc.datasafe.model
Enum DifferenceColumn.PlannedAction
- java.lang.Object
-
- java.lang.Enum<DifferenceColumn.PlannedAction>
-
- com.oracle.bmc.datasafe.model.DifferenceColumn.PlannedAction
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<DifferenceColumn.PlannedAction>
- Enclosing class:
- DifferenceColumn
public static enum DifferenceColumn.PlannedAction extends Enum<DifferenceColumn.PlannedAction> implements BmcEnum
Specifies how to process the difference column.It’s set to SYNC by default. Use the PatchSdmMaskingPolicyDifferenceColumns operation to update this attribute. You can choose one of the following options: SYNC: To sync the difference column and update the masking policy to reflect the changes. NO_SYNC: To not sync the difference column so that it doesn’t change the masking policy. After specifying the planned action, you can use the ApplySdmMaskingPolicyDifference operation to automatically process the difference columns.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NoSync
Sync
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 DifferenceColumn.PlannedAction
create(String key)
String
getValue()
static DifferenceColumn.PlannedAction
valueOf(String name)
Returns the enum constant of this type with the specified name.static DifferenceColumn.PlannedAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Sync
public static final DifferenceColumn.PlannedAction Sync
-
NoSync
public static final DifferenceColumn.PlannedAction NoSync
-
UnknownEnumValue
public static final DifferenceColumn.PlannedAction 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 DifferenceColumn.PlannedAction[] 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 (DifferenceColumn.PlannedAction c : DifferenceColumn.PlannedAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DifferenceColumn.PlannedAction 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 DifferenceColumn.PlannedAction create(String key)
-
-