import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../../types"; /** * Creates a search application. **Note:** This API requires an admin account to execute. */ export declare class SettingSearchapplication extends pulumi.CustomResource { /** * Get an existing SettingSearchapplication resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): SettingSearchapplication; /** * Returns true if the given object is an instance of SettingSearchapplication. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is SettingSearchapplication; /** * Retrictions applied to the configurations. The maximum number of elements is 10. */ readonly dataSourceRestrictions: pulumi.Output; /** * The default fields for returning facet results. The sources specified here also have been included in data_source_restrictions above. */ readonly defaultFacetOptions: pulumi.Output; /** * The default options for sorting the search results */ readonly defaultSortOptions: pulumi.Output; /** * Display name of the Search Application. The maximum length is 300 characters. */ readonly displayName: pulumi.Output; /** * Name of the Search Application. Format: searchapplications/{application_id}. */ readonly name: pulumi.Output; /** * IDs of the Long Running Operations (LROs) currently running for this schema. Output only field. */ readonly operationIds: pulumi.Output; /** * Configuration for ranking results. */ readonly scoringConfig: pulumi.Output; /** * Configuration for a sources specified in data_source_restrictions. */ readonly sourceConfig: pulumi.Output; /** * Create a SettingSearchapplication resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: SettingSearchapplicationArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a SettingSearchapplication resource. */ export interface SettingSearchapplicationArgs { /** * Retrictions applied to the configurations. The maximum number of elements is 10. */ readonly dataSourceRestrictions?: pulumi.Input[]>; /** * The default fields for returning facet results. The sources specified here also have been included in data_source_restrictions above. */ readonly defaultFacetOptions?: pulumi.Input[]>; /** * The default options for sorting the search results */ readonly defaultSortOptions?: pulumi.Input; /** * Display name of the Search Application. The maximum length is 300 characters. */ readonly displayName?: pulumi.Input; /** * Name of the Search Application. Format: searchapplications/{application_id}. */ readonly name?: pulumi.Input; /** * Configuration for ranking results. */ readonly scoringConfig?: pulumi.Input; readonly searchapplicationsId: pulumi.Input; /** * Configuration for a sources specified in data_source_restrictions. */ readonly sourceConfig?: pulumi.Input[]>; }