Azure Files · Authentication Profile

Azure File Storage Authentication

Authentication

Azure Files secures its APIs with apiKey and oauth2 across 2 declared security schemes, as derived from its OpenAPI definitions. OAuth 2.0 is offered via the clientCredentials flow(s).

StorageFile StorageFile SharesSMBNFSCloudAzure
Methods: apiKey, oauth2 Schemes: 2 OAuth flows: clientCredentials API key in: header

Security Schemes

sharedKey apiKey
· in: header (Authorization)
entra oauth2
· flows: clientCredentials

Source

Authentication Profile

Raw ↑
generated: '2026-07-11'
method: derived
source: openapi/azure-file-storage-openapi.yml
summary:
  types:
  - apiKey
  - oauth2
  api_key_in:
  - header
  oauth2_flows:
  - clientCredentials
schemes:
- name: sharedKey
  type: apiKey
  in: header
  parameter: Authorization
  description: |-
    Shared Key authorization header in the form `SharedKey {account}:{signature}`,
    where signature is an HMAC-SHA256 of the canonicalized request.
    See https://learn.microsoft.com/en-us/rest/api/storageservices/authorize-with-shared-key
  sources:
  - openapi/azure-file-storage-openapi.yml
- name: entra
  type: oauth2
  flows:
  - flow: clientCredentials
    tokenUrl: https://login.microsoftonline.com/common/oauth2/v2.0/token
    scopes: 1
  description: Microsoft Entra ID OAuth 2.0 bearer token
  sources:
  - openapi/azure-file-storage-openapi.yml