Package org.apache.iceberg.rest.requests
Interface CreateViewRequest
-
- All Superinterfaces:
RESTMessage,RESTRequest
@Immutable public interface CreateViewRequest extends RESTRequest
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description java.lang.Stringlocation()java.lang.Stringname()java.util.Map<java.lang.String,java.lang.String>properties()Schemaschema()default voidvalidate()Ensures that a constructed instance of a REST message is valid according to the REST spec.ViewVersionviewVersion()
-
-
-
Method Detail
-
name
java.lang.String name()
-
location
@Nullable java.lang.String location()
-
schema
Schema schema()
-
viewVersion
ViewVersion viewVersion()
-
properties
java.util.Map<java.lang.String,java.lang.String> properties()
-
validate
default void validate()
Description copied from interface:RESTMessageEnsures that a constructed instance of a REST message is valid according to the REST spec.This is needed when parsing data that comes from external sources and the object might have been constructed without all the required fields present.
- Specified by:
validatein interfaceRESTMessage
-
-