import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Semantic Store resource in Oracle Cloud Infrastructure Generative AI service. * * Gets information about a semanticStore. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSemanticStore = oci.generativeai.getSemanticStore({ * semanticStoreId: testSemanticStoreOciGenerativeAiSemanticStore.id, * }); * ``` */ export declare function getSemanticStore(args: GetSemanticStoreArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSemanticStore. */ export interface GetSemanticStoreArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SemanticStore. */ semanticStoreId: string; } /** * A collection of values returned by getSemanticStore. */ export interface GetSemanticStoreResult { /** * Owning compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for a SemanticStore. */ readonly compartmentId: string; /** * Defines the data source that the semantic model connects to. */ readonly dataSources: outputs.GenerativeAi.GetSemanticStoreDataSource[]; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * An optional description of the SemanticStore. */ readonly description: string; /** * A user-friendly name. */ readonly displayName: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * An [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) that uniquely identifies a SemanticStore. */ readonly id: string; /** * A message describing the current state in more detail that can provide actionable information. */ readonly lifecycleDetails: string; /** * Specifies a refresh schedule. Null represents no automated synchronization schedule. */ readonly refreshSchedules: outputs.GenerativeAi.GetSemanticStoreRefreshSchedule[]; /** * Array of database schemas to be included in the connection. Each schema must define a name. A simple schema definition includes only the name, for example: { "schemas": [ { "name": "HR" } ] } Only one schema name is allowed now. Additional configuration options may be supported in extended forms later. */ readonly schemas: outputs.GenerativeAi.GetSemanticStoreSchema[]; readonly semanticStoreId: string; /** * The lifecycle state of a SemanticStore. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time that the SemanticStore was created in the format of an RFC3339 datetime string. */ readonly timeCreated: string; /** * The date and time that the SemanticStore was updated in the format of an RFC3339 datetime string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Semantic Store resource in Oracle Cloud Infrastructure Generative AI service. * * Gets information about a semanticStore. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSemanticStore = oci.generativeai.getSemanticStore({ * semanticStoreId: testSemanticStoreOciGenerativeAiSemanticStore.id, * }); * ``` */ export declare function getSemanticStoreOutput(args: GetSemanticStoreOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSemanticStore. */ export interface GetSemanticStoreOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SemanticStore. */ semanticStoreId: pulumi.Input; } //# sourceMappingURL=getSemanticStore.d.ts.map