Show / Hide Table of Contents

Class StructuredSearchDetails

A request that uses Search's structured query language to specify filter conditions to apply to search results. For more information about writing queries, see Search Language Syntax.

Inheritance
object
SearchDetails
StructuredSearchDetails
Inherited Members
SearchDetails.MatchingContextType
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ResourcesearchService.Models
Assembly: OCI.DotNetSDK.Resourcesearch.dll
Syntax
public class StructuredSearchDetails : SearchDetails

Properties

Query

Declaration
[Required(ErrorMessage = "Query is required.")]
[JsonProperty(PropertyName = "query")]
public string Query { get; set; }
Property Value
Type Description
string

The structured query describing which resources to search for.

Remarks

Required

In this article
Back to top