ServiceSasParameters Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ServiceSasParameters() |
Initializes a new instance of the ServiceSasParameters class. |
ServiceSasParameters(String, String, String, 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, String, String, 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, string resource = default, string permissions = default, string iPAddressOrRange = default, Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.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.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.ServiceSasParameters : string * string * string * string * Nullable<Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.HttpProtocol> * Nullable<DateTime> * Nullable<DateTime> * string * string * string * string * string * string * string * string * string * string * string -> Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.ServiceSasParameters
Public Sub New (canonicalizedResource As String, Optional resource As String = Nothing, Optional permissions As String = 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
- String
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
- String
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'
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.