import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Hosted Application resource in Oracle Cloud Infrastructure Generative AI service. * * Gets information about a hosted application. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testHostedApplication = oci.generativeai.getHostedApplication({ * hostedApplicationId: testHostedApplicationOciGenerativeAiHostedApplication.id, * }); * ``` */ export declare function getHostedApplication(args: GetHostedApplicationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getHostedApplication. */ export interface GetHostedApplicationArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the hosted application. */ hostedApplicationId: string; } /** * A collection of values returned by getHostedApplication. */ export interface GetHostedApplicationResult { /** * 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; }; /** * An optional description of the hosted application. */ readonly description: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. */ readonly displayName: string; /** * The list of environment variables for the Hosted Application. Defines a list of environment variables injected at runtime. */ readonly environmentVariables: outputs.GenerativeAi.GetHostedApplicationEnvironmentVariable[]; /** * 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; }; readonly hostedApplicationId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the hosted application. */ readonly id: string; /** * The client-side inbound authentication configuration for the Hosted Application. Defines the network access rules. When unspecified, the service applies the default inbound authentication configuration type. */ readonly inboundAuthConfigs: outputs.GenerativeAi.GetHostedApplicationInboundAuthConfig[]; /** * A message describing the current state of the endpoint in more detail that can provide actionable information. */ readonly lifecycleDetails: string; /** * Networking configuration. */ readonly networkingConfigs: outputs.GenerativeAi.GetHostedApplicationNetworkingConfig[]; /** * The auto scaling configuration for the Hosted Application. Defines the minimum and maximum number of replicas. When unspecified, the service applies service-defined default scaling values. */ readonly scalingConfigs: outputs.GenerativeAi.GetHostedApplicationScalingConfig[]; /** * The current state of the hosted application. */ readonly state: string; /** * A list of storageConfigs managed by the Oracle Cloud Infrastructure GenAI Platform and attached to the application. */ readonly storageConfigs: outputs.GenerativeAi.GetHostedApplicationStorageConfig[]; /** * 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 application was created, in the format defined by RFC 3339 */ readonly timeCreated: string; /** * The date and time the hosted application was updated, in the format defined by RFC 3339 */ readonly timeUpdated: string; } /** * This data source provides details about a specific Hosted Application resource in Oracle Cloud Infrastructure Generative AI service. * * Gets information about a hosted application. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testHostedApplication = oci.generativeai.getHostedApplication({ * hostedApplicationId: testHostedApplicationOciGenerativeAiHostedApplication.id, * }); * ``` */ export declare function getHostedApplicationOutput(args: GetHostedApplicationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getHostedApplication. */ export interface GetHostedApplicationOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the hosted application. */ hostedApplicationId: pulumi.Input; } //# sourceMappingURL=getHostedApplication.d.ts.map