ServiceLimits Constructors

Definition

Overloads

ServiceLimits()

Initializes a new instance of the ServiceLimits class.

ServiceLimits(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the ServiceLimits class.

ServiceLimits()

Source:
ServiceLimits.cs

Initializes a new instance of the ServiceLimits class.

public ServiceLimits ();
Public Sub New ()

Applies to

ServiceLimits(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Source:
ServiceLimits.cs

Initializes a new instance of the ServiceLimits class.

public ServiceLimits (int? maxFieldsPerIndex = default, int? maxFieldNestingDepthPerIndex = default, int? maxComplexCollectionFieldsPerIndex = default, int? maxComplexObjectsInCollectionsPerDocument = default);
new Microsoft.Azure.Search.Models.ServiceLimits : Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.Azure.Search.Models.ServiceLimits
Public Sub New (Optional maxFieldsPerIndex As Nullable(Of Integer) = Nothing, Optional maxFieldNestingDepthPerIndex As Nullable(Of Integer) = Nothing, Optional maxComplexCollectionFieldsPerIndex As Nullable(Of Integer) = Nothing, Optional maxComplexObjectsInCollectionsPerDocument As Nullable(Of Integer) = Nothing)

Parameters

maxFieldsPerIndex
Nullable<Int32>

The maximum allowed fields per index.

maxFieldNestingDepthPerIndex
Nullable<Int32>

The maximum depth which you can nest sub-fields in an index, including the top-level complex field. For example, a/b/c has a nesting depth of 3.

maxComplexCollectionFieldsPerIndex
Nullable<Int32>

The maximum number of fields of type Collection(Edm.ComplexType) allowed in an index.

maxComplexObjectsInCollectionsPerDocument
Nullable<Int32>

The maximum number of objects in complex collections allowed per document.

Applies to