@Evolving public interface MetalakeChange
| Modifier and Type | Interface and Description | 
|---|---|
static class  | 
MetalakeChange.RemoveProperty
A metalake change to remove a property from the metalake. 
 | 
static class  | 
MetalakeChange.RenameMetalake
A metalake change to rename the metalake. 
 | 
static class  | 
MetalakeChange.SetProperty
A metalake change to set a property and value pair for the metalake. 
 | 
static class  | 
MetalakeChange.UpdateMetalakeComment
A metalake change to update the metalake comment. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static MetalakeChange | 
removeProperty(java.lang.String property)
Creates a new metalake change to remove a property from the metalake. 
 | 
static MetalakeChange | 
rename(java.lang.String newName)
Creates a new metalake change to rename the metalake. 
 | 
static MetalakeChange | 
setProperty(java.lang.String property,
           java.lang.String value)
Creates a new metalake change to set a property and value pair for the metalake. 
 | 
static MetalakeChange | 
updateComment(java.lang.String newComment)
Creates a new metalake change to update the metalake comment. 
 | 
static MetalakeChange rename(java.lang.String newName)
newName - The New name of the metalake.static MetalakeChange updateComment(java.lang.String newComment)
newComment - The new comment of the metalake.static MetalakeChange setProperty(java.lang.String property, java.lang.String value)
property - The property name to set.value - The value to set the property to.static MetalakeChange removeProperty(java.lang.String property)
property - The property name to remove.