Show / Hide Table of Contents

Class GetAccountSASArgs

Inheritance
System.Object
InputArgs
InvokeArgs
GetAccountSASArgs
Inherited Members
InvokeArgs.Empty
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 Source

GetAccountSASArgs()

Declaration
public GetAccountSASArgs()

Properties

View Source

ConnectionString

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
View Source

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
View Source

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>
View Source

Permissions

A permissions block as defined below.

Declaration
public GetAccountSASPermissionsArgs Permissions { get; set; }
Property Value
Type Description
GetAccountSASPermissionsArgs
View Source

ResourceTypes

A resource_types block as defined below.

Declaration
public GetAccountSASResourceTypesArgs ResourceTypes { get; set; }
Property Value
Type Description
GetAccountSASResourceTypesArgs
View Source

Services

A services block as defined below.

Declaration
public GetAccountSASServicesArgs Services { get; set; }
Property Value
Type Description
GetAccountSASServicesArgs
View Source

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
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.