ResourceTypes Class

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

Inheritance
builtins.object
ResourceTypes

Constructor

ResourceTypes(**kwargs: Any)

Parameters

service
bool

Access to service-level APIs (e.g., Get/Set Service Properties, Get Service Stats, List Tables)

object
bool

Access to object-level APIs for tables (e.g. Get/Create/Query Entity etc.)

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: str) -> azure.data.tables._models.ResourceTypes

Parameters

string
str
Required

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

string
Required

Returns

A ResourceTypes object

Return type