Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
PR feedback
  • Loading branch information
vincenttran-msft committed Apr 30, 2024
commit bd12b0d0f25db0949d8c8ecdae9793e54d580074
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,8 @@ class ShareProperties(DictMixin):
:ivar list(str) protocols:
Indicates the protocols enabled on the share. The protocol can be either SMB or NFS.
:ivar bool enable_snapshot_virtual_directory_access:
Supported in service version 2023-08-03 and greater. Specifies whether the snapshot
virtual directory should be accessible at the root of the share mount point when NFS
is enabled. if not specified, the default is True.
Specifies whether the snapshot virtual directory should be accessible at the root of the share
mount point when NFS is enabled. if not specified, the default is True.
"""

def __init__(self, **kwargs):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -363,9 +363,8 @@ def create_share(self, **kwargs):
Only valid for NFS shares. Possible values include: 'NoRootSquash', 'RootSquash', 'AllSquash'.
:paramtype root_squash: str or ~azure.storage.fileshare.ShareRootSquash
:keyword bool enable_snapshot_virtual_directory_access:
Supported in service version 2023-08-03 and greater. Specifies whether the snapshot
virtual directory should be accessible at the root of the share mount point when NFS
is enabled. Default value is True.
Specifies whether the snapshot virtual directory should be accessible at the root of the share
mount point when NFS is enabled. Default value is True.
:returns: Share-updated property dict (Etag and last modified).
:rtype: Dict[str, Any]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,8 @@ async def create_share(self, **kwargs):
Only valid for NFS shares. Possible values include: 'NoRootSquash', 'RootSquash', 'AllSquash'.
:paramtype root_squash: str or ~azure.storage.fileshare.ShareRootSquash
:keyword bool enable_snapshot_virtual_directory_access:
Supported in service version 2023-08-03 and greater. Specifies whether the snapshot
virtual directory should be accessible at the root of the share mount point when NFS
is enabled. Default value is True.
Specifies whether the snapshot virtual directory should be accessible at the root of the share
mount point when NFS is enabled. Default value is True.
:returns: Share-updated property dict (Etag and last modified).
:rtype: Dict[str, Any]

Expand Down