AzureBlobStorageHttpLogsConfig Constructors

Definition

Overloads

AzureBlobStorageHttpLogsConfig()

Initializes a new instance of the AzureBlobStorageHttpLogsConfig class.

AzureBlobStorageHttpLogsConfig(String, Nullable<Int32>, Nullable<Boolean>)

Initializes a new instance of the AzureBlobStorageHttpLogsConfig class.

AzureBlobStorageHttpLogsConfig()

Initializes a new instance of the AzureBlobStorageHttpLogsConfig class.

public AzureBlobStorageHttpLogsConfig ();
Public Sub New ()

Applies to

AzureBlobStorageHttpLogsConfig(String, Nullable<Int32>, Nullable<Boolean>)

Initializes a new instance of the AzureBlobStorageHttpLogsConfig class.

public AzureBlobStorageHttpLogsConfig (string sasUrl = default, int? retentionInDays = default, bool? enabled = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.AzureBlobStorageHttpLogsConfig : string * Nullable<int> * Nullable<bool> -> Microsoft.Azure.Management.AppService.Fluent.Models.AzureBlobStorageHttpLogsConfig
Public Sub New (Optional sasUrl As String = Nothing, Optional retentionInDays As Nullable(Of Integer) = Nothing, Optional enabled As Nullable(Of Boolean) = Nothing)

Parameters

sasUrl
String

SAS url to a azure blob container with read/write/list/delete permissions.

retentionInDays
Nullable<Int32>

Retention in days. Remove blobs older than X days. 0 or lower means no retention.

enabled
Nullable<Boolean>

True if configuration is enabled, false if it is disabled and null if configuration is not set.

Applies to