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 Private Applications in Oracle Cloud Infrastructure Service Catalog service. * * Lists all the private applications in a given compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPrivateApplications = oci.servicecatalog.getPrivateApplications({ * compartmentId: compartmentId, * displayName: privateApplicationDisplayName, * privateApplicationId: testPrivateApplication.id, * }); * ``` */ export declare function getPrivateApplications(args: GetPrivateApplicationsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPrivateApplications. */ export interface GetPrivateApplicationsArgs { /** * The unique identifier for the compartment. */ compartmentId: string; /** * Exact match name filter. */ displayName?: string; filters?: inputs.ServiceCatalog.GetPrivateApplicationsFilter[]; /** * The unique identifier for the private application. */ privateApplicationId?: string; } /** * A collection of values returned by getPrivateApplications. */ export interface GetPrivateApplicationsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where the private application resides. */ readonly compartmentId: string; /** * The name used to refer to the uploaded data. */ readonly displayName?: string; readonly filters?: outputs.ServiceCatalog.GetPrivateApplicationsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of private_application_collection. */ readonly privateApplicationCollections: outputs.ServiceCatalog.GetPrivateApplicationsPrivateApplicationCollection[]; readonly privateApplicationId?: string; } /** * This data source provides the list of Private Applications in Oracle Cloud Infrastructure Service Catalog service. * * Lists all the private applications in a given compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPrivateApplications = oci.servicecatalog.getPrivateApplications({ * compartmentId: compartmentId, * displayName: privateApplicationDisplayName, * privateApplicationId: testPrivateApplication.id, * }); * ``` */ export declare function getPrivateApplicationsOutput(args: GetPrivateApplicationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPrivateApplications. */ export interface GetPrivateApplicationsOutputArgs { /** * The unique identifier for the compartment. */ compartmentId: pulumi.Input; /** * Exact match name filter. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The unique identifier for the private application. */ privateApplicationId?: pulumi.Input; } //# sourceMappingURL=getPrivateApplications.d.ts.map