DataLakeSasQueryParameters Class

Definition

A DataLakeSasQueryParameters object represents the components that make up an Azure Storage Shared Access Signature's query parameters. You can construct a new instance using DataLakeSasBuilder.

For more information, Create a service SAS.

public sealed class DataLakeSasQueryParameters : Azure.Storage.Sas.SasQueryParameters
type DataLakeSasQueryParameters = class
    inherit SasQueryParameters
Public NotInheritable Class DataLakeSasQueryParameters
Inherits SasQueryParameters
Inheritance
DataLakeSasQueryParameters

Fields

DefaultSasVersion

The default service version to use for Shared Access Signatures.

(Inherited from SasQueryParameters)

Properties

AgentObjectId

Gets the Unauthorized AAD Object Id associated with the shared access signature. The AAD Object Id of a user that is assumed to be unauthorized by the owner of the User Delegation Key. The Azure Storage Service will perform an additional POSIX ACL check to determine if the user is authorized to perform the requested operation. This cannot be used in conjuction with PreauthorizedAgentObjectId. Only valid in an HNS enabled account. If this value is set in an non-HNS enabled account, an authorization failure will be thrown.

(Inherited from SasQueryParameters)
CacheControl

Gets the Cache-Control response header, which allows for specifying the client-side caching to be used for blob and file downloads.

(Inherited from SasQueryParameters)
ContentDisposition

Gets the Content-Disposition response header, which allows for specifying the way that the blob or file content can be displayed in the browser.

(Inherited from SasQueryParameters)
ContentEncoding

Gets the Content-Encoding response header, which allows for specifying the type of encoding used for blob and file downloads.

(Inherited from SasQueryParameters)
ContentLanguage

Gets the Content-Language response header, which allows for specifying the language of the downloaded blob or file content.

(Inherited from SasQueryParameters)
ContentType

Gets the Content-Type response header, which allows for specifying the type of the downloaded blob or file content.

(Inherited from SasQueryParameters)
CorrelationId

Gets the Correlation Id associated with the shared access signature. This is used to correlate the storage audit logs with the audit logs used by the principal generating and distributing SAS.

(Inherited from SasQueryParameters)
DirectoryDepth

Gets the Directory Depth specificed in the canonicalizedresource field of the string-to-sign. The depth of the directory is the number of directories beneath the root folder. Required when resource (sr) = d to indicate the depth of the directory. The value must be a non-negative integer.

(Inherited from SasQueryParameters)
Empty

Gets empty shared access signature query parameters.

EncryptionScope

Gets the Encryption Scope associated with the shared access signature.

(Inherited from SasQueryParameters)
ExpiresOn

Gets the time at which the shared access signature becomes invalid. MinValue means not set.

(Inherited from SasQueryParameters)
Identifier

Gets the optional unique value up to 64 characters in length that correlates to an access policy specified for the blob container, queue, or share.

(Inherited from SasQueryParameters)
IPRange

Gets the optional IP address or a range of IP addresses from which to accept requests. When specifying a range, note that the range is inclusive.

(Inherited from SasQueryParameters)
KeyExpiresOn

Gets the time at which the key becomes expires.

KeyObjectId

Gets the Azure Active Directory object ID in GUID format.

KeyService

Gets the Storage service that accepts the key.

KeyStartsOn

Gets the time at which the key becomes valid.

KeyTenantId

Gets the Azure Active Directory tenant ID in GUID format

KeyVersion

Gets the Storage service version that created the key.

Permissions

Gets the permissions associated with the shared access signature. The user is restricted to operations allowed by the permissions. This field must be omitted if it has been specified in an associated stored access policy.

(Inherited from SasQueryParameters)
PreauthorizedAgentObjectId

Gets the Authorized AAD Object Id associated with the shared access signature. The AAD Object ID of a user authorized by the owner of the User Delegation Key to perform the action granted by the SAS. The Azure Storage service will ensure that the owner of the user delegation key has the required permissions before granting access but no additional permission check for the user specified in this value will be performed. This cannot be used in conjuction with AgentObjectId. Only valid in an HNS enabled account. If this value is set in an non-HNS enabled account, an authorization failure will be thrown.

(Inherited from SasQueryParameters)
Protocol

Optional. Specifies the protocol permitted for a request made with the shared access signature.

(Inherited from SasQueryParameters)
Resource

Gets the resources are accessible via the shared access signature.

(Inherited from SasQueryParameters)
ResourceTypes

Gets which resources are accessible via the shared access signature.

(Inherited from SasQueryParameters)
Services

Gets the signed services accessible with an account level shared access signature.

(Inherited from SasQueryParameters)
Signature

Gets the string-to-sign, a unique string constructed from the fields that must be verified in order to authenticate the request. The signature is an HMAC computed over the string-to-sign and key using the SHA256 algorithm, and then encoded using Base64 encoding.

(Inherited from SasQueryParameters)
StartsOn

Gets the optional time at which the shared access signature becomes valid. If omitted, start time for this call is assumed to be the time when the storage service receives the request. MinValue means not set.

(Inherited from SasQueryParameters)
Version

Gets the storage service version to use to authenticate requests made with this shared access signature, and the service version to use when handling requests made with this shared access signature.

(Inherited from SasQueryParameters)

Methods

AppendProperties(StringBuilder)

Builds the query parameter string for the SasQueryParameters instance.

(Inherited from SasQueryParameters)
ToString()

Convert the SAS query parameters into a URL encoded query string.

Applies to