Azure Functions · JSON Structure

Azure Functions Azure Blob Storage Application Logs Config Structure

Application logs azure blob storage configuration.

Type: object Properties: 3
CloudComputeEvent-DrivenFunctionsServerless

AzureBlobStorageApplicationLogsConfig is a JSON Structure definition published by Azure Functions, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

level retentionInDays 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-functions/refs/heads/main/json-structure/azure-functions-azure-blob-storage-application-logs-config-structure.json",
  "description": "Application logs azure blob storage configuration.",
  "type": "object",
  "properties": {
    "level": {
      "description": "Log level.",
      "enum": [
        "Off",
        "Verbose",
        "Information",
        "Warning",
        "Error"
      ],
      "type": "string",
      "x-ms-enum": {
        "modelAsString": false,
        "name": "LogLevel"
      }
    },
    "retentionInDays": {
      "description": "Retention in days.\nRemove blobs older than X days.\n0 or lower means no retention.",
      "format": "int32",
      "type": "integer"
    },
    "sasUrl": {
      "description": "SAS url to a azure blob container with read/write/list/delete permissions.",
      "type": "string"
    }
  },
  "name": "AzureBlobStorageApplicationLogsConfig"
}