import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Semantic Stores in Oracle Cloud Infrastructure Generative AI service. * * Lists the SemanticStores given specific filter. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSemanticStores = oci.generativeai.getSemanticStores({ * compartmentId: compartmentId, * dataSourceQueryingConnectionId: testConnection.id, * displayName: semanticStoreDisplayName, * id: semanticStoreId, * states: semanticStoreState, * }); * ``` */ export declare function getSemanticStores(args?: GetSemanticStoresArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSemanticStores. */ export interface GetSemanticStoresArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: string; /** * A filter to return only resources whose queryingConnectionId matches with this id. */ dataSourceQueryingConnectionId?: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.GenerativeAi.GetSemanticStoresFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SemanticStore. */ id?: string; /** * A filter to return only resources whose lifecycle state matches the given array. */ states?: string[]; } /** * A collection of values returned by getSemanticStores. */ export interface GetSemanticStoresResult { /** * Owning compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for a SemanticStore. */ readonly compartmentId?: string; readonly dataSourceQueryingConnectionId?: string; /** * A user-friendly name. */ readonly displayName?: string; readonly filters?: outputs.GenerativeAi.GetSemanticStoresFilter[]; /** * An [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) that uniquely identifies a SemanticStore. */ readonly id?: string; /** * The list of semantic_store_collection. */ readonly semanticStoreCollections: outputs.GenerativeAi.GetSemanticStoresSemanticStoreCollection[]; /** * The lifecycle state of a SemanticStore. */ readonly states?: string[]; } /** * This data source provides the list of Semantic Stores in Oracle Cloud Infrastructure Generative AI service. * * Lists the SemanticStores given specific filter. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSemanticStores = oci.generativeai.getSemanticStores({ * compartmentId: compartmentId, * dataSourceQueryingConnectionId: testConnection.id, * displayName: semanticStoreDisplayName, * id: semanticStoreId, * states: semanticStoreState, * }); * ``` */ export declare function getSemanticStoresOutput(args?: GetSemanticStoresOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSemanticStores. */ export interface GetSemanticStoresOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: pulumi.Input; /** * A filter to return only resources whose queryingConnectionId matches with this id. */ dataSourceQueryingConnectionId?: pulumi.Input; /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SemanticStore. */ id?: pulumi.Input; /** * A filter to return only resources whose lifecycle state matches the given array. */ states?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getSemanticStores.d.ts.map