LogFile Constructors

Definition

Overloads

LogFile()

Initializes a new instance of the LogFile class.

LogFile(String, String, String, Nullable<Int64>, Nullable<DateTime>, Nullable<DateTime>, String, String)

Initializes a new instance of the LogFile class.

LogFile()

Initializes a new instance of the LogFile class.

public LogFile ();
Public Sub New ()

Applies to

LogFile(String, String, String, Nullable<Int64>, Nullable<DateTime>, Nullable<DateTime>, String, String)

Initializes a new instance of the LogFile class.

public LogFile (string id = default, string name = default, string type = default, long? sizeInKB = default, DateTime? createdTime = default, DateTime? lastModifiedTime = default, string logFileType = default, string url = default);
new Microsoft.Azure.Management.MySQL.Models.LogFile : string * string * string * Nullable<int64> * Nullable<DateTime> * Nullable<DateTime> * string * string -> Microsoft.Azure.Management.MySQL.Models.LogFile
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional sizeInKB As Nullable(Of Long) = Nothing, Optional createdTime As Nullable(Of DateTime) = Nothing, Optional lastModifiedTime As Nullable(Of DateTime) = Nothing, Optional logFileType As String = Nothing, Optional url As String = Nothing)

Parameters

id
String

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

The name of the resource

type
String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

sizeInKB
Nullable<Int64>

Size of the log file.

createdTime
Nullable<DateTime>

Creation timestamp of the log file.

lastModifiedTime
Nullable<DateTime>

Last modified timestamp of the log file.

logFileType
String

Type of the log file.

url
String

The url to download the log file from.

Applies to