AccountSasPermissions class
Definition
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.
AccountSasPermissions(read=False, write=False, delete=False, list=False, add=False, create=False, update=False, process=False)
- Inheritance
-
builtins.objectAccountSasPermissions
Parameters
- read
- bool
Valid for all signed resources types (Service, Container, and Object). Permits read permissions to the specified resource type.
- write
- bool
Valid for all signed resources types (Service, Container, and Object). Permits write permissions to the specified resource type.
- delete
- bool
Valid for Container and Object resource types, except for queue messages.
- list
- bool
Valid for Service and Container resource types only.
- add
- bool
Valid for the following Object resource types only: queue messages, and append blobs.
- create
- bool
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.
- update
- bool
Valid for the following Object resource types only: queue messages.
- process
- bool
Valid for the following Object resource type only: queue messages.
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
- permission
- str
Specify permissions in the string with the first letter of the word.
- permission
Returns
An AccountSasPermissions object