SearchModelFactory.KnowledgeBaseIndexedOneLakeReference Method

Definition

Overloads

KnowledgeBaseIndexedOneLakeReference(String, Int32, IDictionary<String,BinaryData>, Nullable<Single>, Uri)

Source:
SearchModelFactory.cs

Represents an indexed OneLake document reference.

public static Azure.Search.Documents.KnowledgeBases.Models.KnowledgeBaseIndexedOneLakeReference KnowledgeBaseIndexedOneLakeReference(string id = default, int activitySource = 0, System.Collections.Generic.IDictionary<string,BinaryData> sourceData = default, float? rerankerScore = default, Uri docUrl = default);
static member KnowledgeBaseIndexedOneLakeReference : string * int * System.Collections.Generic.IDictionary<string, BinaryData> * Nullable<single> * Uri -> Azure.Search.Documents.KnowledgeBases.Models.KnowledgeBaseIndexedOneLakeReference
Public Shared Function KnowledgeBaseIndexedOneLakeReference (Optional id As String = Nothing, Optional activitySource As Integer = 0, Optional sourceData As IDictionary(Of String, BinaryData) = Nothing, Optional rerankerScore As Nullable(Of Single) = Nothing, Optional docUrl As Uri = Nothing) As KnowledgeBaseIndexedOneLakeReference

Parameters

id
String

The ID of the reference.

activitySource
Int32

The source activity ID for the reference.

sourceData
IDictionary<String,BinaryData>

The source data for the reference.

rerankerScore
Nullable<Single>

The reranker score for the document reference.

docUrl
Uri

The document URL for the reference.

Returns

A new KnowledgeBaseIndexedOneLakeReference instance for mocking.

Applies to

KnowledgeBaseIndexedOneLakeReference(String, Int32, IReadOnlyDictionary<String,Object>, Nullable<Single>, String)

Source:
SearchModelFactory.cs

Initializes a new instance of KnowledgeBaseIndexedOneLakeReference.

public static Azure.Search.Documents.KnowledgeBases.Models.KnowledgeBaseIndexedOneLakeReference KnowledgeBaseIndexedOneLakeReference(string id = default, int activitySource = 0, System.Collections.Generic.IReadOnlyDictionary<string,object> sourceData = default, float? rerankerScore = default, string docUrl = default);
static member KnowledgeBaseIndexedOneLakeReference : string * int * System.Collections.Generic.IReadOnlyDictionary<string, obj> * Nullable<single> * string -> Azure.Search.Documents.KnowledgeBases.Models.KnowledgeBaseIndexedOneLakeReference
Public Shared Function KnowledgeBaseIndexedOneLakeReference (Optional id As String = Nothing, Optional activitySource As Integer = 0, Optional sourceData As IReadOnlyDictionary(Of String, Object) = Nothing, Optional rerankerScore As Nullable(Of Single) = Nothing, Optional docUrl As String = Nothing) As KnowledgeBaseIndexedOneLakeReference

Parameters

id
String

The ID of the reference.

activitySource
Int32

The source activity ID for the reference.

sourceData
IReadOnlyDictionary<String,Object>

Dictionary of <any>.

rerankerScore
Nullable<Single>

The reranker score for the document reference.

docUrl
String

The document URL for the reference.

Returns

A new KnowledgeBaseIndexedOneLakeReference instance for mocking.

Applies to