Services Class
Specifies the services accessible with the account SAS.
- Inheritance
-
builtins.objectServices
Constructor
Services(*, blob: bool = False, queue: bool = False, fileshare: bool = False)
Keyword-Only Parameters
Name | Description |
---|---|
blob
|
Access for the ~azure.storage.blob.BlobServiceClient. Default is False. |
queue
|
Access for the ~azure.storage.queue.QueueServiceClient. Default is False. |
fileshare
|
Access for the ~azure.storage.fileshare.ShareServiceClient. Default is False. |
Methods
from_string |
Create Services from a string. To specify blob, queue, or file you need only to include the first letter of the word in the string. E.g. for blob and queue you would provide a string "bq". |
from_string
Create Services from a string.
To specify blob, queue, or file you need only to include the first letter of the word in the string. E.g. for blob and queue you would provide a string "bq".
from_string(string)
Parameters
Name | Description |
---|---|
string
Required
|
Specify blob, queue, or file in in the string with the first letter of the word. |
Returns
Type | Description |
---|---|
A Services object |
Azure SDK for Python