import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Endpoint resource in Oracle Cloud Infrastructure Generative AI service. * * Gets information about an endpoint. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testEndpoint = oci.generativeai.getEndpoint({ * endpointId: testEndpointOciGenerativeAiEndpoint.id, * }); * ``` */ export declare function getEndpoint(args: GetEndpointArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEndpoint. */ export interface GetEndpointArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the endpoint. */ endpointId: string; } /** * A collection of values returned by getEndpoint. */ export interface GetEndpointResult { readonly compartmentId: string; /** * The configuration details, whether to add the content moderation feature to the model. Content moderation removes toxic and biased content from responses. */ readonly contentModerationConfigs: outputs.GenerativeAi.GetEndpointContentModerationConfig[]; /** * The OCID of the dedicated AI cluster on which the model will be deployed to. */ readonly dedicatedAiClusterId: string; /** * 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 endpoint. */ readonly description: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. */ readonly displayName: string; readonly endpointId: 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; }; readonly generativeAiPrivateEndpointId: string; /** * An OCID that uniquely identifies this endpoint resource. */ readonly id: string; /** * A message describing the current state of the endpoint in more detail that can provide actionable information. */ readonly lifecycleDetails: string; /** * The OCID of the model that's used to create this endpoint. */ readonly modelId: string; /** * The current state of the endpoint. */ 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 endpoint was created in the format of an RFC3339 datetime string. */ readonly timeCreated: string; /** * The date and time that the endpoint was updated in the format of an RFC3339 datetime string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Endpoint resource in Oracle Cloud Infrastructure Generative AI service. * * Gets information about an endpoint. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testEndpoint = oci.generativeai.getEndpoint({ * endpointId: testEndpointOciGenerativeAiEndpoint.id, * }); * ``` */ export declare function getEndpointOutput(args: GetEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEndpoint. */ export interface GetEndpointOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the endpoint. */ endpointId: pulumi.Input; } //# sourceMappingURL=getEndpoint.d.ts.map