Azure Storage Accounts · Schema
Endpoints
The URIs that are used to perform a retrieval of a public blob, queue, table, web or dfs object.
AzureBlob StorageCloud StorageFile StorageQueue StorageStorageTable Storage
Properties
| Name | Type | Description |
|---|---|---|
| blob | string | Gets the blob endpoint. |
| dfs | string | Gets the dfs endpoint. |
| file | string | Gets the file endpoint. |
| internetEndpoints | object | Gets the internet routing storage endpoints |
| microsoftEndpoints | object | Gets the microsoft routing storage endpoints. |
| queue | string | Gets the queue endpoint. |
| table | string | Gets the table endpoint. |
| web | string | Gets the web endpoint. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/azure-storage-accounts/refs/heads/main/json-schema/azure-storage-accounts-endpoints-schema.json",
"title": "Endpoints",
"description": "The URIs that are used to perform a retrieval of a public blob, queue, table, web or dfs object.",
"properties": {
"blob": {
"description": "Gets the blob endpoint.",
"readOnly": true,
"type": "string"
},
"dfs": {
"description": "Gets the dfs endpoint.",
"readOnly": true,
"type": "string"
},
"file": {
"description": "Gets the file endpoint.",
"readOnly": true,
"type": "string"
},
"internetEndpoints": {
"$ref": "#/definitions/StorageAccountInternetEndpoints",
"description": "Gets the internet routing storage endpoints",
"x-ms-client-flatten": false
},
"microsoftEndpoints": {
"$ref": "#/definitions/StorageAccountMicrosoftEndpoints",
"description": "Gets the microsoft routing storage endpoints.",
"x-ms-client-flatten": false
},
"queue": {
"description": "Gets the queue endpoint.",
"readOnly": true,
"type": "string"
},
"table": {
"description": "Gets the table endpoint.",
"readOnly": true,
"type": "string"
},
"web": {
"description": "Gets the web endpoint.",
"readOnly": true,
"type": "string"
}
},
"type": "object"
}