Bagikan melalui


DataExport Constructors

Definition

Overloads

DataExport()

Initializes a new instance of the DataExport class.

DataExport(IList<String>, String, String, String, String, Nullable<Boolean>, String, String)

Initializes a new instance of the DataExport class.

DataExport()

Initializes a new instance of the DataExport class.

public DataExport ();
Public Sub New ()

Applies to

DataExport(IList<String>, String, String, String, String, Nullable<Boolean>, String, String)

Initializes a new instance of the DataExport class.

public DataExport (System.Collections.Generic.IList<string> tableNames, string resourceId, string dataExportId = default, string dataExportType = default, string eventHubName = default, bool? enable = default, string createdDate = default, string lastModifiedDate = default);
new Microsoft.Azure.Management.OperationalInsights.Models.DataExport : System.Collections.Generic.IList<string> * string * string * string * string * Nullable<bool> * string * string -> Microsoft.Azure.Management.OperationalInsights.Models.DataExport
Public Sub New (tableNames As IList(Of String), resourceId As String, Optional dataExportId As String = Nothing, Optional dataExportType As String = Nothing, Optional eventHubName As String = Nothing, Optional enable As Nullable(Of Boolean) = Nothing, Optional createdDate As String = Nothing, Optional lastModifiedDate As String = Nothing)

Parameters

tableNames
IList<String>

An array of tables to export, for example: [“Heartbeat, SecurityEvent”].

resourceId
String

The destination resource ID. This can be copied from the Properties entry of the destination resource in Azure.

dataExportId
String

The data export rule ID.

dataExportType
String

The type of the destination resource. Possible values include: 'StorageAccount', 'EventHub'

eventHubName
String

Optional. Allows to define an Event Hub name. Not applicable when destination is Storage Account.

enable
Nullable<Boolean>

Active when enabled.

createdDate
String

The latest data export rule modification time.

lastModifiedDate
String

Date and time when the export was last modified.

Applies to