Class GetAccountSASArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.Storage
Assembly: Pulumi.Azure.dll
Syntax
public sealed class GetAccountSASArgs : InvokeArgs
Constructors
View SourceGetAccountSASArgs()
Declaration
public GetAccountSASArgs()
Properties
View SourceConnectionString
The connection string for the storage account to which this SAS applies. Typically directly from the primary_connection_string attribute of a azure.storage.Account resource.
Declaration
public string ConnectionString { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Expiry
The expiration time and date of this SAS. Must be a valid ISO-8601 format time/date string.
Declaration
public string Expiry { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
HttpsOnly
Only permit https access. If false, both http and https are permitted. Defaults to true.
Declaration
public bool? HttpsOnly { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |
Permissions
A permissions block as defined below.
Declaration
public GetAccountSASPermissionsArgs Permissions { get; set; }
Property Value
| Type | Description |
|---|---|
| GetAccountSASPermissionsArgs |
ResourceTypes
A resource_types block as defined below.
Declaration
public GetAccountSASResourceTypesArgs ResourceTypes { get; set; }
Property Value
| Type | Description |
|---|---|
| GetAccountSASResourceTypesArgs |
Services
A services block as defined below.
Declaration
public GetAccountSASServicesArgs Services { get; set; }
Property Value
| Type | Description |
|---|---|
| GetAccountSASServicesArgs |
Start
The starting time and date of validity of this SAS. Must be a valid ISO-8601 format time/date string.
Declaration
public string Start { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |