Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{

Check notice on line 1 in specification/storage/data-plane/Microsoft.FileStorage/stable/2026-02-06/file.json

View workflow job for this annotation

GitHub Actions / TypeSpec Requirement

Brownfield services will soon be required to convert from OpenAPI to TypeSpec. See https://aka.ms/azsdk/typespec.

Check notice on line 1 in specification/storage/data-plane/Microsoft.FileStorage/stable/2026-02-06/file.json

View workflow job for this annotation

GitHub Actions / TypeSpec Requirement

Brownfield services will soon be required to convert from OpenAPI to TypeSpec. See https://aka.ms/azsdk/typespec.
"swagger": "2.0",
"info": {
"title": "Azure File Storage",
Expand Down Expand Up @@ -288,6 +288,9 @@
},
{
"$ref": "#/parameters/ShareProvisionedBandwidthMibps"
},
{
"$ref": "#/parameters/EnableSmbDirectoryLease"
}
],
"responses": {
Expand Down Expand Up @@ -574,6 +577,11 @@
"description": "Returns the current share next allowed provisioned bandwidth downgrade time.",
"type": "string",
"format": "date-time-rfc1123"
},
"x-ms-enable-smb-directory-lease": {
"x-ms-client-name": "enableSmbDirectoryLease",
"description": "Specifies whether granting of new directory leases for directories present in a share is enabled(allowed) or disabled(blocked). Header is only returned for a SMB Share.",
"type": "boolean"
}
}
},
Expand Down Expand Up @@ -1598,6 +1606,9 @@
},
{
"$ref": "#/parameters/ShareProvisionedBandwidthMibps"
},
{
"$ref": "#/parameters/EnableSmbDirectoryLease"
}
],
"responses": {
Expand Down Expand Up @@ -7476,6 +7487,9 @@
"NextAllowedProvisionedBandwidthDowngradeTime": {
"type": "string",
"format": "date-time-rfc1123"
},
"EnableSmbDirectoryLease": {
"type": "boolean"
}
}
},
Expand Down Expand Up @@ -8676,6 +8690,15 @@
"description": "NFS only. Required. Specifies the path of the target file to which the link will be created, up to 2 KiB in length. It should be full path of the target from the root.The target file must be in the same share and hence the same storage account.",
"type": "string",
"x-ms-parameter-location": "method"
},
"EnableSmbDirectoryLease": {
"name": "x-ms-enable-smb-directory-lease",
"x-ms-client-name": "enableSmbDirectoryLease",
"in": "header",
"required": false,
"description": "SMB only, default is true. Specifies whether granting of new directory leases for directories present in a share are to be enabled or disabled. An input of true specifies that granting of new directory leases is to be allowed. An input of false specifies that granting of new directory leases is to be blocked.",
"type": "boolean",
"x-ms-parameter-location": "method"
}
}
}
Loading