/** * Search Service API * Search for resources in your cloud network. * OpenAPI spec version: 20180409 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ /** * A base request type that contains common criteria for searching for resources. */ export interface SearchDetails { /** * The type of matching context returned in the response. If you specify {@code HIGHLIGHTS}, then the service will highlight fragments in its response. (For more information, see ResourceSummary.searchContext and SearchContext.) The default setting is {@code NONE}. * */ "matchingContextType"?: SearchDetails.MatchingContextType; "type": string; } export declare namespace SearchDetails { enum MatchingContextType { None = "NONE", Highlights = "HIGHLIGHTS" } function getJsonObj(obj: SearchDetails): object; function getDeserializedJsonObj(obj: SearchDetails): object; }