import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Hosted Deployment resource in Oracle Cloud Infrastructure Generative AI service. * * Gets information about a hosted deployment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testHostedDeployment = oci.generativeai.getHostedDeployment({ * hostedDeploymentId: testHostedDeploymentOciGenerativeAiHostedDeployment.id, * }); * ``` */ export declare function getHostedDeployment(args: GetHostedDeploymentArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getHostedDeployment. */ export interface GetHostedDeploymentArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the hosted deployment. */ hostedDeploymentId: string; } /** * A collection of values returned by getHostedDeployment. */ export interface GetHostedDeploymentResult { /** * Container/artifact configuration for the deployment. */ readonly activeArtifacts: outputs.GenerativeAi.GetHostedDeploymentActiveArtifact[]; /** * array of Artifacts. */ readonly artifacts: outputs.GenerativeAi.GetHostedDeploymentArtifact[]; /** * The compartment OCID to create the hosted application in. */ readonly compartmentId: 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; }; /** * A user-friendly name. Does not have to be unique, and it's changeable. */ 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; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the parent Hosted Application. The ID may refer to either an IAM-authenticated or non-IAM Hosted Application. */ readonly hostedApplicationId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the application. */ readonly hostedDeploymentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the hosted deployment. */ readonly id: string; /** * The current state of the hosted deployment. */ 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 the hosted deployment was created, in the format defined by RFC 3339 */ readonly timeCreated: string; /** * The date and time the hosted deployment was updated, in the format defined by RFC 3339 */ readonly timeUpdated: string; } /** * This data source provides details about a specific Hosted Deployment resource in Oracle Cloud Infrastructure Generative AI service. * * Gets information about a hosted deployment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testHostedDeployment = oci.generativeai.getHostedDeployment({ * hostedDeploymentId: testHostedDeploymentOciGenerativeAiHostedDeployment.id, * }); * ``` */ export declare function getHostedDeploymentOutput(args: GetHostedDeploymentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getHostedDeployment. */ export interface GetHostedDeploymentOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the hosted deployment. */ hostedDeploymentId: pulumi.Input; } //# sourceMappingURL=getHostedDeployment.d.ts.map