@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 |
handlerThe 'handler' property of the UDF. |
java.lang.Boolean |
immutableIs the UDF immutable? |
java.util.List |
inputsThe 'inputs' property for the Snowflake UDF. |
java.lang.String |
languageThe 'language' property of the UDF. |
java.lang.String |
nameThe name of the domain container, which equates to the name of the function or procedure. |
java.lang.String |
returnsThe 'returns' property for the Snowflake UDF. |
java.lang.String |
runtimeThe Java runtime version. |
java.lang.String |
typeThe '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