Snowflake · Schema

JavaFunction

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
external_access_integrations array List of external access integrations attached to this function/procedure
secrets object Secrets to be used with this function/procedure for external access
target_path string Specifies where Snowflake should write the compiled code for inline procedures
runtime_version string Specifies the Java JDK runtime version to use. The supported versions of Java are 11.x and 17.x (Preview support)
View JSON Schema on GitHub

JSON Schema

user-defined-function-java-function-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "JavaFunction",
  "type": "object",
  "properties": {
    "external_access_integrations": {
      "type": "array",
      "description": "List of external access integrations attached to this function/procedure"
    },
    "secrets": {
      "type": "object",
      "description": "Secrets to be used with this function/procedure for external access"
    },
    "target_path": {
      "type": "string",
      "description": "Specifies where Snowflake should write the compiled code for inline procedures"
    },
    "runtime_version": {
      "type": "string",
      "description": "Specifies the Java JDK runtime version to use. \n                    The supported versions of Java are 11.x and 17.x (Preview support)"
    }
  }
}