LoggerUpdateContract Constructors

Definition

Overloads

LoggerUpdateContract()

Initializes a new instance of the LoggerUpdateContract class.

LoggerUpdateContract(String, String, IDictionary<String,String>, Nullable<Boolean>)

Initializes a new instance of the LoggerUpdateContract class.

LoggerUpdateContract()

Initializes a new instance of the LoggerUpdateContract class.

public LoggerUpdateContract ();
Public Sub New ()

Applies to

LoggerUpdateContract(String, String, IDictionary<String,String>, Nullable<Boolean>)

Initializes a new instance of the LoggerUpdateContract class.

public LoggerUpdateContract (string loggerType = default, string description = default, System.Collections.Generic.IDictionary<string,string> credentials = default, bool? isBuffered = default);
new Microsoft.Azure.Management.ApiManagement.Models.LoggerUpdateContract : string * string * System.Collections.Generic.IDictionary<string, string> * Nullable<bool> -> Microsoft.Azure.Management.ApiManagement.Models.LoggerUpdateContract
Public Sub New (Optional loggerType As String = Nothing, Optional description As String = Nothing, Optional credentials As IDictionary(Of String, String) = Nothing, Optional isBuffered As Nullable(Of Boolean) = Nothing)

Parameters

loggerType
String

Logger type. Possible values include: 'azureEventHub', 'applicationInsights', 'azureMonitor'

description
String

Logger description.

credentials
IDictionary<String,String>

Logger credentials.

isBuffered
Nullable<Boolean>

Whether records are buffered in the logger before publishing. Default is assumed to be true.

Applies to