FileSystemHttpLogsConfig 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
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
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.
Retention in days. Remove files older than X days. 0 or lower means no retention.
True if configuration is enabled, false if it is disabled and null if configuration is not set.
Applies to
Azure SDK for .NET