SearchSchemaValue Constructors

Definition

Overloads

SearchSchemaValue()

Initializes a new instance of the SearchSchemaValue class.

SearchSchemaValue(Boolean, Boolean, Boolean, String, String, String, IList<String>)

Initializes a new instance of the SearchSchemaValue class.

SearchSchemaValue()

Initializes a new instance of the SearchSchemaValue class.

public SearchSchemaValue ();
Public Sub New ()

Applies to

SearchSchemaValue(Boolean, Boolean, Boolean, String, String, String, IList<String>)

Initializes a new instance of the SearchSchemaValue class.

public SearchSchemaValue (bool indexed, bool stored, bool facet, string name = default, string displayName = default, string type = default, System.Collections.Generic.IList<string> ownerType = default);
new Microsoft.Azure.Management.OperationalInsights.Models.SearchSchemaValue : bool * bool * bool * string * string * string * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.OperationalInsights.Models.SearchSchemaValue
Public Sub New (indexed As Boolean, stored As Boolean, facet As Boolean, Optional name As String = Nothing, Optional displayName As String = Nothing, Optional type As String = Nothing, Optional ownerType As IList(Of String) = Nothing)

Parameters

indexed
Boolean

The boolean that indicates the field is searchable as free text.

stored
Boolean

The boolean that indicates whether or not the field is stored.

facet
Boolean

The boolean that indicates whether or not the field is a facet.

name
String

The name of the schema.

displayName
String

The display name of the schema.

type
String

The type.

ownerType
IList<String>

The array of workflows containing the field.

Applies to