TableSasPermissions Class

Inheritance
builtins.object
TableSasPermissions

Constructor

TableSasPermissions(**kwargs)

Parameters

read
bool

Get entities and query entities.

add
bool

Add entities. Add and Update permissions are required for upsert operations.

update
bool

Update entities. Add and Update permissions are required for upsert operations.

delete
bool

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) -> TableSasPermissions

Parameters

permission
str
Required

Specify permissions in the string with the first letter of the word.

Returns

An TableSasPermissions object

Return type