Share via


AuthorizationLevel Enum

  • java.lang.Object
    • java.lang.Enum<AuthorizationLevel>
      • com.microsoft.azure.functions.annotation.AuthorizationLevel

public enum AuthorizationLevel

Azure HTTP authorization level, Determines what keys, if any, need to be present on the request in order to invoke the function.

Fields

ADMIN

The master key is required.

ANONYMOUS

No API key is required.

FUNCTION

A function-specific API key is required. This is the default value if none is provided.

Applies to