Services Class
Specifies the services accessible with the account SAS.
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. Default value: False | 
| queue | Access for the ~azure.storage.queue.QueueServiceClient. Default is False. Default value: False | 
| fileshare | Access for the ~azure.storage.fileshare.ShareServiceClient. Default is False. Default value: 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 |