FileSystemHttpLogsConfig Constructors

Definition

Overloads

FileSystemHttpLogsConfig()

Initializes a new instance of the FileSystemHttpLogsConfig class.

FileSystemHttpLogsConfig(Nullable<Int32>, Nullable<Int32>, Nullable<Boolean>)

Initializes a new instance of the FileSystemHttpLogsConfig class.

FileSystemHttpLogsConfig()

Initializes a new instance of the FileSystemHttpLogsConfig class.

public FileSystemHttpLogsConfig ();
Public Sub New ()

Applies to

FileSystemHttpLogsConfig(Nullable<Int32>, Nullable<Int32>, Nullable<Boolean>)

Initializes a new instance of the FileSystemHttpLogsConfig class.

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

Parameters

retentionInMb
Nullable<Int32>

Maximum size in megabytes that http log files can use. When reached old log files will be removed to make space for new ones. Value can range between 25 and 100.

retentionInDays
Nullable<Int32>

Retention in days. Remove files 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