import * as pulumi from "@pulumi/pulumi"; /** * Gets a DataStore. */ export declare function getDataStore(args: GetDataStoreArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetDataStoreArgs { collectionId: string; dataStoreId: string; location: string; project?: string; } export interface GetDataStoreResult { /** * Immutable. The content config of the data store. If this field is unset, the server behavior defaults to ContentConfig.NO_CONTENT. */ readonly contentConfig: string; /** * Timestamp the DataStore was created at. */ readonly createTime: string; /** * The id of the default Schema asscociated to this data store. */ readonly defaultSchemaId: string; /** * The data store display name. This field must be a UTF-8 encoded string with a length limit of 128 characters. Otherwise, an INVALID_ARGUMENT error is returned. */ readonly displayName: string; /** * Immutable. The industry vertical that the data store registers. */ readonly industryVertical: string; /** * Immutable. The full resource name of the data store. Format: `projects/{project}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}`. This field must be a UTF-8 encoded string with a length limit of 1024 characters. */ readonly name: string; /** * The solutions that the data store enrolls. Available solutions for each industry_vertical: * `MEDIA`: `SOLUTION_TYPE_RECOMMENDATION` and `SOLUTION_TYPE_SEARCH`. * `SITE_SEARCH`: `SOLUTION_TYPE_SEARCH` is automatically enrolled. Other solutions cannot be enrolled. */ readonly solutionTypes: string[]; } /** * Gets a DataStore. */ export declare function getDataStoreOutput(args: GetDataStoreOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetDataStoreOutputArgs { collectionId: pulumi.Input; dataStoreId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }