ResourceTypes Class
Specifies the resource types that are accessible with the account SAS.
- Inheritance
-
builtins.objectResourceTypes
Constructor
ResourceTypes(service: bool = False, container: bool = False, object: bool = False)
Parameters
Name | Description |
---|---|
service
|
Access to service-level APIs (e.g., Get/Set Service Properties, Get Service Stats, List Containers/Queues/Shares) Default value: False
|
container
|
Access to container-level APIs (e.g., Create/Delete Container, Create/Delete Queue, Create/Delete Share, List Blobs/Files and Directories) Default value: False
|
object
|
Access to object-level APIs for blobs, queue messages, and files(e.g. Put Blob, Query Entity, Get Messages, Create File, etc.) Default value: False
|
Methods
from_string |
Create a ResourceTypes from a string. To specify service, container, or object you need only to include the first letter of the word in the string. E.g. service and container, you would provide a string "sc". |
from_string
Create a ResourceTypes from a string.
To specify service, container, or object you need only to include the first letter of the word in the string. E.g. service and container, you would provide a string "sc".
from_string(string)
Parameters
Name | Description |
---|---|
string
Required
|
Specify service, container, or object in in the string with the first letter of the word. |
Returns
Type | Description |
---|---|
A ResourceTypes object |
Attributes
container
container: bool = False
object
object: bool = False
service
service: bool = False
Azure SDK for Python