Enum MaskingPolicyHealthReportLogSummary.HealthCheckType
- java.lang.Object
-
- java.lang.Enum<MaskingPolicyHealthReportLogSummary.HealthCheckType>
-
- com.oracle.bmc.datasafe.model.MaskingPolicyHealthReportLogSummary.HealthCheckType
-
- All Implemented Interfaces:
BmcEnum,Serializable,Comparable<MaskingPolicyHealthReportLogSummary.HealthCheckType>
- Enclosing class:
- MaskingPolicyHealthReportLogSummary
public static enum MaskingPolicyHealthReportLogSummary.HealthCheckType extends Enum<MaskingPolicyHealthReportLogSummary.HealthCheckType> implements BmcEnum
An enum type entry for each health check in the masking policy.Each enum describes a type of health check. INVALID_OBJECT_CHECK checks if there exist any invalid objects in the masking tables. PRIVILEGE_CHECK checks if the masking user has sufficient privilege to run masking. TABLESPACE_CHECK checks if the user has sufficient default and TEMP tablespace. Also verifies that the specified tablespace by the user is valid, if user has provided one DATABASE_OR_SYSTEM_TRIGGERS_CHECK checks if there exist any database/system triggers available. UNDO_TABLESPACE_CHECK checks if for all the instances of undo tablespace the AUTOEXTEND feature is enabled. If it’s not enabled, it further checks if the undo tablespace has any space remaining. STATE_STATS_CHECK checks if all the statistics of the masking table is upto date or not. OLS_POLICY_CHECK , VPD_POLICY_CHECK and REDACTION_POLICY_CHECK checks if the masking tables has Oracle Label Security (OLS) or Virtual Private Database (VPD) or Redaction policies enabled. DV_ENABLE_CHECK checks if database has Database Vault(DV) enabled DE_COL_SIZE_CHECK checks if any masking column with DETERMINISTIC ENCRYPTION as masking format has average column size greater than 27 or not. ACTIVE_MASK_JOB_CHECK checks if there is any active masking job running on the target database. DETERMINISTIC_ENCRYPTION_FORMAT_CHECK checks if any masking column has deterministic encryption masking format. COLUMN_EXIST_CHECK checks if the masking columns are available in the target database. TIME_TRAVEL_CHECK checks if the masking tables have Time Travel enabled. INVALID_PACKAGE_CHECK checks if any of the required packages are in invalid state.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ActiveMaskJobCheckColumnExistCheckDatabaseOrSystemTriggersCheckDeColSizeCheckDeterministicEncryptionFormatCheckDvEnableCheckInvalidObjectCheckInvalidPackageCheckOlsPolicyCheckPrivilegeCheckRedactionPolicyCheckStateStatsCheckTablespaceCheckTargetValidationCheckTimeTravelCheckUndoTablespaceCheckUnknownEnumValueThis value is used if a service returns a value for this enum that is not recognized by this version of the SDK.VpdPolicyCheck
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MaskingPolicyHealthReportLogSummary.HealthCheckTypecreate(String key)StringgetValue()static MaskingPolicyHealthReportLogSummary.HealthCheckTypevalueOf(String name)Returns the enum constant of this type with the specified name.static MaskingPolicyHealthReportLogSummary.HealthCheckType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
InvalidObjectCheck
public static final MaskingPolicyHealthReportLogSummary.HealthCheckType InvalidObjectCheck
-
PrivilegeCheck
public static final MaskingPolicyHealthReportLogSummary.HealthCheckType PrivilegeCheck
-
TablespaceCheck
public static final MaskingPolicyHealthReportLogSummary.HealthCheckType TablespaceCheck
-
DatabaseOrSystemTriggersCheck
public static final MaskingPolicyHealthReportLogSummary.HealthCheckType DatabaseOrSystemTriggersCheck
-
UndoTablespaceCheck
public static final MaskingPolicyHealthReportLogSummary.HealthCheckType UndoTablespaceCheck
-
StateStatsCheck
public static final MaskingPolicyHealthReportLogSummary.HealthCheckType StateStatsCheck
-
OlsPolicyCheck
public static final MaskingPolicyHealthReportLogSummary.HealthCheckType OlsPolicyCheck
-
VpdPolicyCheck
public static final MaskingPolicyHealthReportLogSummary.HealthCheckType VpdPolicyCheck
-
DvEnableCheck
public static final MaskingPolicyHealthReportLogSummary.HealthCheckType DvEnableCheck
-
DeColSizeCheck
public static final MaskingPolicyHealthReportLogSummary.HealthCheckType DeColSizeCheck
-
RedactionPolicyCheck
public static final MaskingPolicyHealthReportLogSummary.HealthCheckType RedactionPolicyCheck
-
ActiveMaskJobCheck
public static final MaskingPolicyHealthReportLogSummary.HealthCheckType ActiveMaskJobCheck
-
TargetValidationCheck
public static final MaskingPolicyHealthReportLogSummary.HealthCheckType TargetValidationCheck
-
DeterministicEncryptionFormatCheck
public static final MaskingPolicyHealthReportLogSummary.HealthCheckType DeterministicEncryptionFormatCheck
-
ColumnExistCheck
public static final MaskingPolicyHealthReportLogSummary.HealthCheckType ColumnExistCheck
-
TimeTravelCheck
public static final MaskingPolicyHealthReportLogSummary.HealthCheckType TimeTravelCheck
-
InvalidPackageCheck
public static final MaskingPolicyHealthReportLogSummary.HealthCheckType InvalidPackageCheck
-
UnknownEnumValue
public static final MaskingPolicyHealthReportLogSummary.HealthCheckType 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 MaskingPolicyHealthReportLogSummary.HealthCheckType[] 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 (MaskingPolicyHealthReportLogSummary.HealthCheckType c : MaskingPolicyHealthReportLogSummary.HealthCheckType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MaskingPolicyHealthReportLogSummary.HealthCheckType 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 MaskingPolicyHealthReportLogSummary.HealthCheckType create(String key)
-
-