ExtensionDataSource Constructors

Definition

Overloads

ExtensionDataSource()

Initializes a new instance of the ExtensionDataSource class.

ExtensionDataSource(String, IList<String>, Object, IList<String>, String)

Initializes a new instance of the ExtensionDataSource class.

ExtensionDataSource()

Initializes a new instance of the ExtensionDataSource class.

public ExtensionDataSource ();
Public Sub New ()

Applies to

ExtensionDataSource(String, IList<String>, Object, IList<String>, String)

Initializes a new instance of the ExtensionDataSource class.

public ExtensionDataSource (string extensionName, System.Collections.Generic.IList<string> streams = default, object extensionSettings = default, System.Collections.Generic.IList<string> inputDataSources = default, string name = default);
new Microsoft.Azure.Management.Monitor.Models.ExtensionDataSource : string * System.Collections.Generic.IList<string> * obj * System.Collections.Generic.IList<string> * string -> Microsoft.Azure.Management.Monitor.Models.ExtensionDataSource
Public Sub New (extensionName As String, Optional streams As IList(Of String) = Nothing, Optional extensionSettings As Object = Nothing, Optional inputDataSources As IList(Of String) = Nothing, Optional name As String = Nothing)

Parameters

extensionName
String

The name of the VM extension.

streams
IList<String>

List of streams that this data source will be sent to. A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.

extensionSettings
Object

The extension settings. The format is specific for particular extension.

inputDataSources
IList<String>

The list of data sources this extension needs data from.

name
String

A friendly name for the data source. This name should be unique across all data sources (regardless of type) within the data collection rule.

Applies to