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 Api Platform Instances in Oracle Cloud Infrastructure Api Platform service. * * Gets a list of API Platform Instances * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testApiPlatformInstances = oci.oci.getApiPlatformApiPlatformInstances({ * compartmentId: compartmentId, * id: apiPlatformInstanceId, * name: apiPlatformInstanceName, * state: apiPlatformInstanceState, * }); * ``` */ export declare function getApiPlatformApiPlatformInstances(args?: GetApiPlatformApiPlatformInstancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getApiPlatformApiPlatformInstances. */ export interface GetApiPlatformApiPlatformInstancesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: string; filters?: inputs.oci.GetApiPlatformApiPlatformInstancesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance */ id?: string; /** * A filter to return only resources that match the given name exactly */ name?: string; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getApiPlatformApiPlatformInstances. */ export interface GetApiPlatformApiPlatformInstancesResult { /** * The list of api_platform_instance_collection. */ readonly apiPlatformInstanceCollections: outputs.oci.GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment */ readonly compartmentId?: string; readonly filters?: outputs.oci.GetApiPlatformApiPlatformInstancesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance */ readonly id?: 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; } /** * This data source provides the list of Api Platform Instances in Oracle Cloud Infrastructure Api Platform service. * * Gets a list of API Platform Instances * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testApiPlatformInstances = oci.oci.getApiPlatformApiPlatformInstances({ * compartmentId: compartmentId, * id: apiPlatformInstanceId, * name: apiPlatformInstanceName, * state: apiPlatformInstanceState, * }); * ``` */ export declare function getApiPlatformApiPlatformInstancesOutput(args?: GetApiPlatformApiPlatformInstancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getApiPlatformApiPlatformInstances. */ export interface GetApiPlatformApiPlatformInstancesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance */ id?: pulumi.Input; /** * A filter to return only resources that match the given name exactly */ name?: pulumi.Input; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getApiPlatformApiPlatformInstances.d.ts.map