Show / Hide Table of Contents

Class SuggestMatchesRequest

Inheritance
object
SuggestMatchesRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatacatalogService.Requests
Assembly: OCI.DotNetSDK.Datacatalog.dll
Syntax
public class SuggestMatchesRequest : IOciRequest
Examples

Click here to see an example of how to use SuggestMatches request.

Properties

CatalogId

Declaration
[Required(ErrorMessage = "CatalogId is required.")]
[HttpConverter(TargetEnum.Path, "catalogId")]
public string CatalogId { get; set; }
Property Value
Type Description
string

Unique catalog identifier.

Remarks

Required

InputText

Declaration
[Required(ErrorMessage = "InputText is required.")]
[HttpConverter(TargetEnum.Query, "inputText")]
public string InputText { get; set; }
Property Value
Type Description
string

Text input string used for computing potential matching suggestions.

Remarks

Required

Limit

Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

Limit for the list of potential matches returned from the Suggest API. If not specified, will default to 10.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

The client request ID for tracing.

Timeout

Declaration
[HttpConverter(TargetEnum.Query, "timeout")]
public string Timeout { get; set; }
Property Value
Type Description
string

A search timeout string (for example, timeout=4000ms), bounding the search request to be executed within the specified time value and bail with the hits accumulated up to that point when expired. Defaults to no timeout.

Implements

IOciRequest
In this article
Back to top