TableSasPermissions Class  
TableSasPermissions class to be used with the generate_account_sas function.
Constructor
TableSasPermissions(**kwargs: Any)
		Keyword-Only Parameters
| Name | Description | 
|---|---|
| 
		 read 
	 | 
	
		
		 Get entities and query entities.  | 
| 
		 add 
	 | 
	
		
		 Add entities. Add and Update permissions are required for upsert operations.  | 
| 
		 update 
	 | 
	
		
		 Update entities. Add and Update permissions are required for upsert operations.  | 
| 
		 delete 
	 | 
	
		
		 Delete entities.  | 
Methods
| from_string | 
					 Create TableSasPermissions 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 TableSasPermissions 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: str, **kwargs: Any) -> TableSasPermissions
		Parameters
| Name | Description | 
|---|---|
| 
		 permission 
			
				Required
			 
	 | 
	
		
		 Specify permissions in the string with the first letter of the word.  | 
Returns
| Type | Description | 
|---|---|
| 
					 An TableSasPermissions object  | 
		
Attributes
add
Add entities. Add and Update permissions are required for upsert operations.
add: bool
delete
Delete entities.
delete: bool
read
Get entities and query entities.
read: bool
update
Update entities. Add and Update permissions are required for upsert operations.
update: bool