Azure Function Apps · JSON Structure

Azure Function Apps Azure Blob Storage Http Logs Config Structure

Http logs to azure blob storage configuration.

Type: object Properties: 3
AzureComputeFaaSFunctionsServerless

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

Properties

enabled 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-function-apps/refs/heads/main/json-structure/azure-function-apps-azure-blob-storage-http-logs-config-structure.json",
  "description": "Http logs to azure blob storage configuration.",
  "type": "object",
  "properties": {
    "enabled": {
      "description": "True if configuration is enabled, false if it is disabled and null if configuration is not set.",
      "type": "boolean"
    },
    "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": "AzureBlobStorageHttpLogsConfig"
}