AccountSasPermissions Class  
ResourceTypes class to be used with generate_account_sas function and for the AccessPolicies used with set_*_acl. There are two types of SAS which may be used to grant resource access. One is to grant access to a specific resource (resource-specific). Another is to grant access to the entire service for a specific account and allow certain operations based on perms found here.
Constructor
AccountSasPermissions(read: bool = False, write: bool = False, delete: bool = False, list: bool = False, create: bool = False)Parameters
| Name | Description | 
|---|---|
| read | Valid for all signed resources types (Service, Container, and Object). Permits read permissions to the specified resource type. Default value: False | 
| write | Valid for all signed resources types (Service, Container, and Object). Permits write permissions to the specified resource type. Default value: False | 
| delete | Valid for Container and Object resource types, except for queue messages. Default value: False | 
| list | Valid for Service and Container resource types only. Default value: False | 
| create | Valid for the following Object resource types only: blobs and files. Users can create new blobs or files, but may not overwrite existing blobs or files. Default value: False | 
Methods
| from_string | Create AccountSasPermissions from a string. To specify read, write, delete, etc. permissions you need only to include the first letter of the word in the string. E.g. for read and write permissions you would provide a string "rw". | 
from_string
Create AccountSasPermissions from a string.
To specify read, write, delete, etc. permissions you need only to include the first letter of the word in the string. E.g. for read and write permissions you would provide a string "rw".
from_string(permission)Parameters
| Name | Description | 
|---|---|
| permission 
				Required
			 | Specify permissions in the string with the first letter of the word. | 
Returns
| Type | Description | 
|---|---|
| An AccountSasPermissions object | 
Attributes
add
add: bool = Falsecreate
create: bool = Falsedelete
delete: bool = Falsedelete_previous_version
delete_previous_version: bool = Falsefilter_by_tags
filter_by_tags: bool = Falselist
list: bool = Falsepermanent_delete
permanent_delete: bool = Falseprocess
process: bool = Falseread
read: bool = Falseset_immutability_policy
set_immutability_policy: bool = Falsetag
tag: bool = Falseupdate
update: bool = Falsewrite
write: bool = False