你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

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
str

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