ServiceSasParameters Class
The parameters to list service SAS credentials of a specific resource.
All required parameters must be populated in order to send to server.
- Inheritance
-
azure.mgmt.storage._serialization.ModelServiceSasParameters
Constructor
ServiceSasParameters(*, canonicalized_resource: str, resource: str | _models.SignedResource | None = None, permissions: str | _models.Permissions | None = None, ip_address_or_range: str | None = None, protocols: str | _models.HttpProtocol | None = None, shared_access_start_time: datetime | None = None, shared_access_expiry_time: datetime | None = None, identifier: str | None = None, partition_key_start: str | None = None, partition_key_end: str | None = None, row_key_start: str | None = None, row_key_end: str | None = None, key_to_sign: str | None = None, cache_control: str | None = None, content_disposition: str | None = None, content_encoding: str | None = None, content_language: str | None = None, content_type: str | None = None, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
canonicalized_resource
|
The canonical path to the signed resource. Required. |
resource
|
The signed services accessible with the service SAS. Possible values include: Blob (b), Container (c), File (f), Share (s). Known values are: "b", "c", "f", and "s". |
permissions
|
str or
Permissions
The signed permissions for the service SAS. Possible values include: Read (r), Write (w), Delete (d), List (l), Add (a), Create (c), Update (u) and Process (p). Known values are: "r", "d", "w", "l", "a", "c", "u", and "p". |
ip_address_or_range
|
An IP address or a range of IP addresses from which to accept requests. |
protocols
|
str or
HttpProtocol
The protocol permitted for a request made with the account SAS. Known values are: "https,http" and "https". |
shared_access_start_time
|
The time at which the SAS becomes valid. |
shared_access_expiry_time
|
The time at which the shared access signature becomes invalid. |
identifier
|
A unique value up to 64 characters in length that correlates to an access policy specified for the container, queue, or table. |
partition_key_start
|
The start of partition key. |
partition_key_end
|
The end of partition key. |
row_key_start
|
The start of row key. |
row_key_end
|
The end of row key. |
key_to_sign
|
The key to sign the account SAS token with. |
cache_control
|
The response header override for cache control. |
content_disposition
|
The response header override for content disposition. |
content_encoding
|
The response header override for content encoding. |
content_language
|
The response header override for content language. |
content_type
|
The response header override for content type. |
Variables
Name | Description |
---|---|
canonicalized_resource
|
The canonical path to the signed resource. Required. |
resource
|
The signed services accessible with the service SAS. Possible values include: Blob (b), Container (c), File (f), Share (s). Known values are: "b", "c", "f", and "s". |
permissions
|
str or
Permissions
The signed permissions for the service SAS. Possible values include: Read (r), Write (w), Delete (d), List (l), Add (a), Create (c), Update (u) and Process (p). Known values are: "r", "d", "w", "l", "a", "c", "u", and "p". |
ip_address_or_range
|
An IP address or a range of IP addresses from which to accept requests. |
protocols
|
str or
HttpProtocol
The protocol permitted for a request made with the account SAS. Known values are: "https,http" and "https". |
shared_access_start_time
|
The time at which the SAS becomes valid. |
shared_access_expiry_time
|
The time at which the shared access signature becomes invalid. |
identifier
|
A unique value up to 64 characters in length that correlates to an access policy specified for the container, queue, or table. |
partition_key_start
|
The start of partition key. |
partition_key_end
|
The end of partition key. |
row_key_start
|
The start of row key. |
row_key_end
|
The end of row key. |
key_to_sign
|
The key to sign the account SAS token with. |
cache_control
|
The response header override for cache control. |
content_disposition
|
The response header override for content disposition. |
content_encoding
|
The response header override for content encoding. |
content_language
|
The response header override for content language. |
content_type
|
The response header override for content type. |
Azure SDK for Python