Share via


ServiceSasParameters Constructors

Definition

Overloads

ServiceSasParameters()

Initializes a new instance of the ServiceSasParameters class.

ServiceSasParameters(String, SignedResource, Permissions, String, Nullable<HttpProtocol>, Nullable<DateTime>, Nullable<DateTime>, String, String, String, String, String, String, String, String, String, String, String)

Initializes a new instance of the ServiceSasParameters class.

ServiceSasParameters()

Initializes a new instance of the ServiceSasParameters class.

public ServiceSasParameters ();
Public Sub New ()

Applies to

ServiceSasParameters(String, SignedResource, Permissions, String, Nullable<HttpProtocol>, Nullable<DateTime>, Nullable<DateTime>, String, String, String, String, String, String, String, String, String, String, String)

Initializes a new instance of the ServiceSasParameters class.

public ServiceSasParameters (string canonicalizedResource, Microsoft.Azure.Management.Storage.Fluent.Models.SignedResource resource = default, Microsoft.Azure.Management.Storage.Fluent.Models.Permissions permissions = default, string iPAddressOrRange = default, Microsoft.Azure.Management.Storage.Fluent.Models.HttpProtocol? protocols = default, DateTime? sharedAccessStartTime = default, DateTime? sharedAccessExpiryTime = default, string identifier = default, string partitionKeyStart = default, string partitionKeyEnd = default, string rowKeyStart = default, string rowKeyEnd = default, string keyToSign = default, string cacheControl = default, string contentDisposition = default, string contentEncoding = default, string contentLanguage = default, string contentType = default);
new Microsoft.Azure.Management.Storage.Fluent.Models.ServiceSasParameters : string * Microsoft.Azure.Management.Storage.Fluent.Models.SignedResource * Microsoft.Azure.Management.Storage.Fluent.Models.Permissions * string * Nullable<Microsoft.Azure.Management.Storage.Fluent.Models.HttpProtocol> * Nullable<DateTime> * Nullable<DateTime> * string * string * string * string * string * string * string * string * string * string * string -> Microsoft.Azure.Management.Storage.Fluent.Models.ServiceSasParameters
Public Sub New (canonicalizedResource As String, Optional resource As SignedResource = Nothing, Optional permissions As Permissions = Nothing, Optional iPAddressOrRange As String = Nothing, Optional protocols As Nullable(Of HttpProtocol) = Nothing, Optional sharedAccessStartTime As Nullable(Of DateTime) = Nothing, Optional sharedAccessExpiryTime As Nullable(Of DateTime) = Nothing, Optional identifier As String = Nothing, Optional partitionKeyStart As String = Nothing, Optional partitionKeyEnd As String = Nothing, Optional rowKeyStart As String = Nothing, Optional rowKeyEnd As String = Nothing, Optional keyToSign As String = Nothing, Optional cacheControl As String = Nothing, Optional contentDisposition As String = Nothing, Optional contentEncoding As String = Nothing, Optional contentLanguage As String = Nothing, Optional contentType As String = Nothing)

Parameters

canonicalizedResource
String

The canonical path to the signed resource.

resource
SignedResource

The signed services accessible with the service SAS. Possible values include: Blob (b), Container (c), File (f), Share (s). Possible values include: 'b', 'c', 'f', 's'

permissions
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). Possible values include: 'r', 'd', 'w', 'l', 'a', 'c', 'u', 'p'

iPAddressOrRange
String

An IP address or a range of IP addresses from which to accept requests.

protocols
Nullable<HttpProtocol>

The protocol permitted for a request made with the account SAS. Possible values include: 'https,http', 'https'

sharedAccessStartTime
Nullable<DateTime>

The time at which the SAS becomes valid.

sharedAccessExpiryTime
Nullable<DateTime>

The time at which the shared access signature becomes invalid.

identifier
String

A unique value up to 64 characters in length that correlates to an access policy specified for the container, queue, or table.

partitionKeyStart
String

The start of partition key.

partitionKeyEnd
String

The end of partition key.

rowKeyStart
String

The start of row key.

rowKeyEnd
String

The end of row key.

keyToSign
String

The key to sign the account SAS token with.

cacheControl
String

The response header override for cache control.

contentDisposition
String

The response header override for content disposition.

contentEncoding
String

The response header override for content encoding.

contentLanguage
String

The response header override for content language.

contentType
String

The response header override for content type.

Applies to