Udostępnij za pośrednictwem


CaptureDescription Constructors

Definition

Overloads

CaptureDescription()

Initializes a new instance of the CaptureDescription class.

CaptureDescription(Nullable<Boolean>, Nullable<EncodingCaptureDescription>, Nullable<Int32>, Nullable<Int32>, Destination, Nullable<Boolean>)

Initializes a new instance of the CaptureDescription class.

CaptureDescription()

Initializes a new instance of the CaptureDescription class.

public CaptureDescription ();
Public Sub New ()

Applies to

CaptureDescription(Nullable<Boolean>, Nullable<EncodingCaptureDescription>, Nullable<Int32>, Nullable<Int32>, Destination, Nullable<Boolean>)

Initializes a new instance of the CaptureDescription class.

public CaptureDescription (bool? enabled = default, Microsoft.Azure.Management.EventHub.Models.EncodingCaptureDescription? encoding = default, int? intervalInSeconds = default, int? sizeLimitInBytes = default, Microsoft.Azure.Management.EventHub.Models.Destination destination = default, bool? skipEmptyArchives = default);
new Microsoft.Azure.Management.EventHub.Models.CaptureDescription : Nullable<bool> * Nullable<Microsoft.Azure.Management.EventHub.Models.EncodingCaptureDescription> * Nullable<int> * Nullable<int> * Microsoft.Azure.Management.EventHub.Models.Destination * Nullable<bool> -> Microsoft.Azure.Management.EventHub.Models.CaptureDescription
Public Sub New (Optional enabled As Nullable(Of Boolean) = Nothing, Optional encoding As Nullable(Of EncodingCaptureDescription) = Nothing, Optional intervalInSeconds As Nullable(Of Integer) = Nothing, Optional sizeLimitInBytes As Nullable(Of Integer) = Nothing, Optional destination As Destination = Nothing, Optional skipEmptyArchives As Nullable(Of Boolean) = Nothing)

Parameters

enabled
Nullable<Boolean>

A value that indicates whether capture description is enabled.

encoding
Nullable<EncodingCaptureDescription>

Enumerates the possible values for the encoding format of capture description. Note: 'AvroDeflate' will be deprecated in New API Version. Possible values include: 'Avro', 'AvroDeflate'

intervalInSeconds
Nullable<Int32>

The time window allows you to set the frequency with which the capture to Azure Blobs will happen, value should between 60 to 900 seconds

sizeLimitInBytes
Nullable<Int32>

The size window defines the amount of data built up in your Event Hub before an capture operation, value should be between 10485760 to 524288000 bytes

destination
Destination

Properties of Destination where capture will be stored. (Storage Account, Blob Names)

skipEmptyArchives
Nullable<Boolean>

A value that indicates whether to Skip Empty Archives

Applies to