ResourceTypes Class

Specifies the resource types that are accessible with the account SAS.

Inheritance
builtins.object
ResourceTypes

Constructor

ResourceTypes(service=False, container=False, object=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
str

Specify service, container, or object in in the string with the first letter of the word.

Returns

Type Description

A ResourceTypes object