Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NFS Share Snapshot #28362

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
Expand Up @@ -258,6 +258,9 @@
},
{
"$ref": "#/parameters/ShareRootSquash"
},
{
"$ref": "#/parameters/EnableSnapshotVirtualDirectoryAccess"
}
],
"responses": {
Expand Down Expand Up @@ -465,6 +468,11 @@
"name": "ShareRootSquash",
"modelAsString": false
}
},
"x-ms-enable-snapshot-virtual-directory-access": {
"x-ms-client-name": "EnableSnapshotVirtualDirectoryAccess",
"description": "Version 2023-08-03 and newer. Specifies whether the snapshot virtual directory should be accessible at the root of share mount point when NFS is enabled. This header is only returned for shares, not for snapshots.",
"type": "boolean"
}
}
},
Expand Down Expand Up @@ -1434,6 +1442,9 @@
},
{
"$ref": "#/parameters/ShareRootSquash"
},
{
"$ref": "#/parameters/EnableSnapshotVirtualDirectoryAccess"
}
],
"responses": {
Expand Down Expand Up @@ -6428,6 +6439,9 @@
},
"RootSquash": {
"$ref": "#/definitions/ShareRootSquash"
},
"EnableSnapshotVirtualDirectoryAccess": {
"type": "boolean"
}
}
},
Expand Down Expand Up @@ -6809,6 +6823,14 @@
},
"description": "Required if the destination file has an active infinite lease. The lease ID specified for this header must match the lease ID of the destination file. If the request does not include the lease ID or it is not valid, the operation fails with status code 412 (Precondition Failed). If this header is specified and the destination file does not currently have an active lease, the operation will also fail with status code 412 (Precondition Failed)."
},
"EnableSnapshotVirtualDirectoryAccess": {
"name": "x-ms-enable-snapshot-virtual-directory-access",
"x-ms-client-name": "enableSnapshotVirtualDirectoryAccess",
"in": "header",
"required": false,
"type": "boolean",
"x-ms-parameter-location": "method"
},
"FileAttributes": {
"name": "x-ms-file-attributes",
"x-ms-client-name": "FileAttributes",
Expand Down