FileSasPermissions class
Definition
FileSasPermissions class to be used with the generate_file_sas(account_name, file_system_name, directory_name, file_name, credential, permission=None, expiry=None, **kwargs) function.
FileSasPermissions(read=False, create=False, write=False, delete=False)
- Inheritance
-
builtins.objectazure.storage.blob._models.BlobSasPermissionsFileSasPermissions
Parameters
- read
- bool
Read the content, properties, metadata etc. Use the file as the source of a read operation.
- create
- bool
Write a new file
- write
- bool
Create or write content, properties, metadata. Lease the file.
- delete
- bool
Delete the file.