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 Application Storages in Oracle Cloud Infrastructure Generative AI service. * * Lists the hosted application storage in a specific compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testHostedApplicationStorages = oci.generativeai.getHostedApplicationStorages({ * compartmentId: compartmentId, * displayName: hostedApplicationStorageDisplayName, * hostedApplicationStorageType: hostedApplicationStorageHostedApplicationStorageType, * id: hostedApplicationStorageId, * state: hostedApplicationStorageState, * }); * ``` */ export declare function getHostedApplicationStorages(args: GetHostedApplicationStoragesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getHostedApplicationStorages. */ export interface GetHostedApplicationStoragesArgs { /** * 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.GetHostedApplicationStoragesFilter[]; /** * The type of the hosted application storage. */ hostedApplicationStorageType?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the hosted application storage. */ 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 getHostedApplicationStorages. */ export interface GetHostedApplicationStoragesResult { /** * 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.GetHostedApplicationStoragesFilter[]; /** * The list of hosted_application_storage_collection. */ readonly hostedApplicationStorageCollections: outputs.GenerativeAi.GetHostedApplicationStoragesHostedApplicationStorageCollection[]; readonly hostedApplicationStorageType?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the hosted application storage. */ readonly id?: string; /** * The current state of the hosted application storage. */ readonly state?: string; } /** * This data source provides the list of Hosted Application Storages in Oracle Cloud Infrastructure Generative AI service. * * Lists the hosted application storage in a specific compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testHostedApplicationStorages = oci.generativeai.getHostedApplicationStorages({ * compartmentId: compartmentId, * displayName: hostedApplicationStorageDisplayName, * hostedApplicationStorageType: hostedApplicationStorageHostedApplicationStorageType, * id: hostedApplicationStorageId, * state: hostedApplicationStorageState, * }); * ``` */ export declare function getHostedApplicationStoragesOutput(args: GetHostedApplicationStoragesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getHostedApplicationStorages. */ export interface GetHostedApplicationStoragesOutputArgs { /** * 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 type of the hosted application storage. */ hostedApplicationStorageType?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the hosted application storage. */ id?: pulumi.Input; /** * A filter to return only the hosted applications that their lifecycle state matches the given lifecycle state. */ state?: pulumi.Input; } //# sourceMappingURL=getHostedApplicationStorages.d.ts.map