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 Hosted Applications in Oracle Cloud Infrastructure Generative AI service. * * Lists the hosted applications in a specific compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testHostedApplications = oci.generativeai.getHostedApplications({ * compartmentId: compartmentId, * displayName: hostedApplicationDisplayName, * id: hostedApplicationId, * state: hostedApplicationState, * }); * ``` */ export declare function getHostedApplications(args: GetHostedApplicationsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getHostedApplications. */ export interface GetHostedApplicationsArgs { /** * 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 that match the given display name exactly. */ displayName?: string; filters?: inputs.GenerativeAi.GetHostedApplicationsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the hosted application. */ id?: string; /** * A filter to return only the hosted applications that their lifecycle state matches the given lifecycle state. */ state?: string; } /** * A collection of values returned by getHostedApplications. */ export interface GetHostedApplicationsResult { /** * The compartment OCID to create the hosted application in. */ readonly compartmentId: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. */ readonly displayName?: string; readonly filters?: outputs.GenerativeAi.GetHostedApplicationsFilter[]; /** * The list of hosted_application_collection. */ readonly hostedApplicationCollections: outputs.GenerativeAi.GetHostedApplicationsHostedApplicationCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the hosted application. */ readonly id?: string; /** * The current state of the hosted application. */ readonly state?: string; } /** * This data source provides the list of Hosted Applications in Oracle Cloud Infrastructure Generative AI service. * * Lists the hosted applications in a specific compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testHostedApplications = oci.generativeai.getHostedApplications({ * compartmentId: compartmentId, * displayName: hostedApplicationDisplayName, * id: hostedApplicationId, * state: hostedApplicationState, * }); * ``` */ export declare function getHostedApplicationsOutput(args: GetHostedApplicationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getHostedApplications. */ export interface GetHostedApplicationsOutputArgs { /** * 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 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 hosted application. */ id?: pulumi.Input; /** * A filter to return only the hosted applications that their lifecycle state matches the given lifecycle state. */ state?: pulumi.Input; } //# sourceMappingURL=getHostedApplications.d.ts.map