public static enum DiscoveryJobResult.PlannedAction extends Enum<DiscoveryJobResult.PlannedAction> implements BmcEnum
Specifies how to process the discovery result. It’s set to NONE by default. Use the PatchDiscoveryJobResults operation to update this attribute. You can choose one of the following options: ACCEPT: To accept the discovery result and update the sensitive data model to reflect the changes. REJECT: To reject the discovery result so that it doesn’t change the sensitive data model. INVALIDATE: To invalidate a newly discovered column. It adds the column to the sensitive data model but marks it as invalid. It helps track false positives and ensure that they aren’t reported by future discovery jobs. After specifying the planned action, you can use the ApplyDiscoveryJobResults operation to automatically process the discovery results.
Enum Constant and Description |
---|
Accept |
Invalidate |
None |
Reject |
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by
this version of the SDK.
|
Modifier and Type | Method and Description |
---|---|
static DiscoveryJobResult.PlannedAction |
create(String key) |
String |
getValue() |
static DiscoveryJobResult.PlannedAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DiscoveryJobResult.PlannedAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DiscoveryJobResult.PlannedAction None
public static final DiscoveryJobResult.PlannedAction Accept
public static final DiscoveryJobResult.PlannedAction Invalidate
public static final DiscoveryJobResult.PlannedAction Reject
public static final DiscoveryJobResult.PlannedAction UnknownEnumValue
public static DiscoveryJobResult.PlannedAction[] values()
for (DiscoveryJobResult.PlannedAction c : DiscoveryJobResult.PlannedAction.values()) System.out.println(c);
public static DiscoveryJobResult.PlannedAction valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static DiscoveryJobResult.PlannedAction create(String key)
Copyright © 2016–2024. All rights reserved.