import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Private Application resource in Oracle Cloud Infrastructure Service Catalog service. * * Gets the details of the specified private application. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPrivateApplication = oci.servicecatalog.getPrivateApplication({ * privateApplicationId: testPrivateApplicationOciServiceCatalogPrivateApplication.id, * }); * ``` */ export declare function getPrivateApplication(args: GetPrivateApplicationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPrivateApplication. */ export interface GetPrivateApplicationArgs { /** * The unique identifier for the private application. */ privateApplicationId: string; } /** * A collection of values returned by getPrivateApplication. */ export interface GetPrivateApplicationResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where the private application resides. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * The name used to refer to the uploaded data. */ readonly displayName: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The unique identifier for the private application in Marketplace. */ readonly id: string; readonly logoFileBase64encoded: string; /** * The model for uploaded binary data, like logos and images. */ readonly logos: outputs.ServiceCatalog.GetPrivateApplicationLogo[]; /** * A long description of the private application. */ readonly longDescription: string; readonly packageDetails: outputs.ServiceCatalog.GetPrivateApplicationPackageDetail[]; /** * Type of packages within this private application. */ readonly packageType: string; readonly privateApplicationId: string; /** * A short description of the private application. */ readonly shortDescription: string; /** * The lifecycle state of the private application. */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the private application was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2021-05-26T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time the private application was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2021-12-10T05:10:29.721Z` */ readonly timeUpdated: string; } /** * This data source provides details about a specific Private Application resource in Oracle Cloud Infrastructure Service Catalog service. * * Gets the details of the specified private application. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPrivateApplication = oci.servicecatalog.getPrivateApplication({ * privateApplicationId: testPrivateApplicationOciServiceCatalogPrivateApplication.id, * }); * ``` */ export declare function getPrivateApplicationOutput(args: GetPrivateApplicationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPrivateApplication. */ export interface GetPrivateApplicationOutputArgs { /** * The unique identifier for the private application. */ privateApplicationId: pulumi.Input; } //# sourceMappingURL=getPrivateApplication.d.ts.map