Snowflake · Schema

PythonFunction

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
runtime_version string Specifies the Python version to use. The supported versions of Python are: * 3.8 * 3.9 * 3.10 * 3.11
View JSON Schema on GitHub

JSON Schema

user-defined-function-python-function-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PythonFunction",
  "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"
    },
    "runtime_version": {
      "type": "string",
      "description": "Specifies the Python version to use. The supported versions of Python are:\n                        * 3.8\n                        * 3.9\n                        * 3.10\n                        * 3.11"
    }
  }
}