import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Api Platform Instance resource in Oracle Cloud Infrastructure Api Platform service. * * Gets information about an API Platform Instance * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testApiPlatformInstance = oci.oci.getApiPlatformApiPlatformInstance({ * apiPlatformInstanceId: testApiPlatformInstanceOciApiPlatformApiPlatformInstance.id, * }); * ``` */ export declare function getApiPlatformApiPlatformInstance(args: GetApiPlatformApiPlatformInstanceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getApiPlatformApiPlatformInstance. */ export interface GetApiPlatformApiPlatformInstanceArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance */ apiPlatformInstanceId: string; } /** * A collection of values returned by getApiPlatformApiPlatformInstance. */ export interface GetApiPlatformApiPlatformInstanceResult { readonly apiPlatformInstanceId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment */ 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; }; /** * User-provided changeable and non-unique description of the instance */ readonly description: 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 [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance */ readonly id: string; /** * IDCS app associated with the instance, that can be used to manage the roles of the users */ readonly idcsApps: outputs.oci.GetApiPlatformApiPlatformInstanceIdcsApp[]; /** * A message that describes the current state of the instance in more detail. For example, can be used to provide actionable information for a resource in the Failed state */ readonly lifecycleDetails: string; /** * A regionally unique, non-changeable instance name provided by the user during instance creation */ readonly name: string; /** * The current state of the instance */ readonly state: string; /** * 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 instance was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339) Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time the instance was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339) Example: `2016-08-25T21:10:29.600Z` */ readonly timeUpdated: string; /** * Service URIs pertaining to the instance */ readonly uris: outputs.oci.GetApiPlatformApiPlatformInstanceUri[]; } /** * This data source provides details about a specific Api Platform Instance resource in Oracle Cloud Infrastructure Api Platform service. * * Gets information about an API Platform Instance * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testApiPlatformInstance = oci.oci.getApiPlatformApiPlatformInstance({ * apiPlatformInstanceId: testApiPlatformInstanceOciApiPlatformApiPlatformInstance.id, * }); * ``` */ export declare function getApiPlatformApiPlatformInstanceOutput(args: GetApiPlatformApiPlatformInstanceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getApiPlatformApiPlatformInstance. */ export interface GetApiPlatformApiPlatformInstanceOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance */ apiPlatformInstanceId: pulumi.Input; } //# sourceMappingURL=getApiPlatformApiPlatformInstance.d.ts.map