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
View JSON Schema on GitHub

JSON Schema

snowflake-javafunction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JavaFunction",
  "title": "JavaFunction",
  "allOf": [
    {
      "$ref": "#/components/schemas/BaseLanguage"
    }
  ],
  "properties": {
    "external_access_integrations": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of external access integrations attached to this function/procedure",
      "example": []
    },
    "secrets": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Secrets to be used with this function/procedure for external access",
      "example": "example_value"
    },
    "target_path": {
      "type": "string",
      "description": "Specifies where Snowflake should write the compiled code for inline procedures",
      "example": "example_value"
    }
  }
}