Azure Function Apps · JSON Structure

Azure Function Apps Azure Table Storage Application Logs Config Structure

Application logs to Azure table storage configuration.

Type: object Properties: 2 Required: 1
AzureComputeFaaSFunctionsServerless

AzureTableStorageApplicationLogsConfig is a JSON Structure definition published by Azure Function Apps, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

level sasUrl

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-function-apps/refs/heads/main/json-structure/azure-function-apps-azure-table-storage-application-logs-config-structure.json",
  "description": "Application logs to Azure table storage configuration.",
  "type": "object",
  "properties": {
    "level": {
      "description": "Log level.",
      "enum": [
        "Off",
        "Verbose",
        "Information",
        "Warning",
        "Error"
      ],
      "type": "string",
      "x-ms-enum": {
        "modelAsString": false,
        "name": "LogLevel"
      }
    },
    "sasUrl": {
      "description": "SAS URL to an Azure table with add/query/delete permissions.",
      "type": "string"
    }
  },
  "required": [
    "sasUrl"
  ],
  "name": "AzureTableStorageApplicationLogsConfig"
}