@groovy.util.logging.Slf4j class ApplicationContainer extends java.lang.Object
A domain container that allows for defining "Snowflake Applications." The plugin automatically creates the UDFs and procedures configured in this container.
Type | Name and description |
---|---|
java.lang.String |
handler The 'handler' property of the UDF. |
java.lang.Boolean |
immutable Is the UDF immutable? |
java.util.List |
inputs The 'inputs' property for the Snowflake UDF. |
java.lang.String |
language The 'language' property of the UDF. |
java.lang.String |
name The name of the domain container, which equates to the name of the function or procedure. |
java.lang.String |
returns The 'returns' property for the Snowflake UDF. |
java.lang.String |
runtime The Java runtime version. |
java.lang.String |
type The 'type' property of the UDF, either 'function' or 'procedure'. |
Constructor and description |
---|
ApplicationContainer
(java.lang.String name) |
Type Params | Return Type | Name and description |
---|---|---|
|
java.lang.String |
getCreate(java.lang.String imports) A getter for the create statement for the UDF. |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#wait(long), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
The 'handler' property of the UDF.
Is the UDF immutable? DEFAULT: false
The 'inputs' property for the Snowflake UDF.
The 'language' property of the UDF. DEFAULT: 'JAVA'.
The name of the domain container, which equates to the name of the function or procedure.
The 'returns' property for the Snowflake UDF.
The Java runtime version. DEFAULT: '11'.
The 'type' property of the UDF, either 'function' or 'procedure'. DEFAULT: 'function'.
Groovy Documentation