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 @@ -7288,6 +7288,10 @@
"Smb": {
"description": "Settings for SMB protocol.",
"$ref": "#/definitions/ShareSmbSettings"
},
"Nfs": {
"description": "Settings for NFS protocol.",
"$ref": "#/definitions/ShareNfsSettings"
}
}
},
Expand Down Expand Up @@ -7533,6 +7537,35 @@
"Multichannel": {
"description": "Settings for SMB Multichannel.",
"$ref": "#/definitions/SmbMultichannel"
},
"EncryptionInTransit": {
"description": "Enable or disable encryption in transit.",
"type": "object",
"properties": {
"Required": {
"description": "If encryption in transit is required",
"type": "boolean"
}
}
}
}
},
"ShareNfsSettings": {
"description": "Settings for SMB protocol.",
"type": "object",
"xml": {
"name": "NFS"
},
"properties": {
"EncryptionInTransit": {
"description": "Enable or disable encryption in transit.",
"type": "object",
"properties": {
"Required": {
"description": "If encryption in transit is required",
"type": "boolean"
}
}
}
}
},
Expand Down
Loading