@Generated(value="OracleSDKGenerator", comments="API Version: 20190325") public final class UpdateEntityDetails extends Object
Properties used in entity update operations.
Note: Objects should always be created or deserialized using the UpdateEntityDetails.Builder
. This model distinguishes fields that are null
because they are unset from fields that are explicitly set to null
. This is done in the setter methods of the UpdateEntityDetails.Builder
, which maintain a set of all explicitly set fields called __explicitlySet__
. The hashCode()
and equals(Object)
methods are implemented to take __explicitlySet__
into account. The constructor, on the other hand, does not set __explicitlySet__
(since the constructor cannot distinguish explicit null
from unset null
).
Modifier and Type | Class and Description |
---|---|
static class |
UpdateEntityDetails.Builder |
Constructor and Description |
---|
UpdateEntityDetails(String displayName,
String description,
Date timeExternal,
Boolean isLogical,
Boolean isPartition,
String folderKey,
HarvestStatus harvestStatus,
String lastJobKey,
Map<String,Map<String,String>> properties)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static UpdateEntityDetails.Builder |
builder()
Create a new builder.
|
boolean |
equals(Object o) |
Set<String> |
get__explicitlySet__() |
String |
getDescription()
Detailed description of a data entity.
|
String |
getDisplayName()
A user-friendly display name.
|
String |
getFolderKey()
Key of the associated folder.
|
HarvestStatus |
getHarvestStatus()
Status of the object as updated by the harvest process.
|
Boolean |
getIsLogical()
Property to indicate if the object is a physical materialized object or virtual.
|
Boolean |
getIsPartition()
Property to indicate if the object is a sub object of a parent physical object.
|
String |
getLastJobKey()
Key of the last harvest process to update this object.
|
Map<String,Map<String,String>> |
getProperties()
A map of maps that contains the properties which are specific to the entity type.
|
Date |
getTimeExternal()
Last modified timestamp of the object in the external system.
|
int |
hashCode() |
String |
toString() |
@ConstructorProperties(value={"displayName","description","timeExternal","isLogical","isPartition","folderKey","harvestStatus","lastJobKey","properties"}) @Deprecated public UpdateEntityDetails(String displayName, String description, Date timeExternal, Boolean isLogical, Boolean isPartition, String folderKey, HarvestStatus harvestStatus, String lastJobKey, Map<String,Map<String,String>> properties)
public static UpdateEntityDetails.Builder builder()
Create a new builder.
public String getDisplayName()
A user-friendly display name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
public String getDescription()
Detailed description of a data entity.
public Date getTimeExternal()
Last modified timestamp of the object in the external system.
public Boolean getIsLogical()
Property to indicate if the object is a physical materialized object or virtual. For example, View.
public Boolean getIsPartition()
Property to indicate if the object is a sub object of a parent physical object.
public String getFolderKey()
Key of the associated folder.
public HarvestStatus getHarvestStatus()
Status of the object as updated by the harvest process. When an entity object is created, it’s harvest status will indicate if the entity’s metadata has been fully harvested or not. The harvest process can perform shallow harvesting to allow users to browse the metadata and can on-demand deep harvest on any object This requires a harvest status indicator for catalog objects.
public String getLastJobKey()
Key of the last harvest process to update this object.
public Map<String,Map<String,String>> getProperties()
A map of maps that contains the properties which are specific to the entity type. Each entity type definition defines it’s set of required and optional properties. The map keys are category names and the values are maps of property name to property value. Every property is contained inside of a category. Most entities have required properties within the "default" category. To determine the set of required and optional properties for an entity type, a query can be done on ‘/types?type=dataEntity’ that returns a collection of all entity types. The appropriate entity type, which includes definitions of all of it’s properties, can be identified from this collection. Example: {\"properties\": { \"default\": { \"key1\": \"value1\"}}}
Copyright © 2016–2020. All rights reserved.