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.String
location()
java.lang.String
name()
java.util.Map<java.lang.String,java.lang.String>
properties()
Schema
schema()
default void
validate()
Ensures that a constructed instance of a REST message is valid according to the REST spec.ViewVersion
viewVersion()
-
-
-
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:RESTMessage
Ensures 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:
validate
in interfaceRESTMessage
-
-