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 Ai Data Platforms in Oracle Cloud Infrastructure Ai Data Platform service. * * Gets a list of AiDataPlatforms. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAiDataPlatforms = oci.oci.getAiDataPlatformAiDataPlatforms({ * compartmentId: compartmentId, * displayName: aiDataPlatformDisplayName, * excludeLifecycleState: aiDataPlatformExcludeLifecycleState, * id: aiDataPlatformId, * includeLegacy: aiDataPlatformIncludeLegacy, * state: aiDataPlatformState, * }); * ``` */ export declare function getAiDataPlatformAiDataPlatforms(args?: GetAiDataPlatformAiDataPlatformsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAiDataPlatformAiDataPlatforms. */ export interface GetAiDataPlatformAiDataPlatformsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; /** * A filter to exclude resources that match the given lifecycle state. The state value is case-insensitive. */ excludeLifecycleState?: string; filters?: inputs.oci.GetAiDataPlatformAiDataPlatformsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the AiDataPlatform. */ id?: string; /** * This flag will determine if legacy instances will be returned. */ includeLegacy?: 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 getAiDataPlatformAiDataPlatforms. */ export interface GetAiDataPlatformAiDataPlatformsResult { /** * The list of ai_data_platform_collection. */ readonly aiDataPlatformCollections: outputs.oci.GetAiDataPlatformAiDataPlatformsAiDataPlatformCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId?: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. */ readonly displayName?: string; readonly excludeLifecycleState?: string; readonly filters?: outputs.oci.GetAiDataPlatformAiDataPlatformsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the AiDataPlatform. */ readonly id?: string; readonly includeLegacy?: string; /** * The current state of the AiDataPlatform. */ readonly state?: string; } /** * This data source provides the list of Ai Data Platforms in Oracle Cloud Infrastructure Ai Data Platform service. * * Gets a list of AiDataPlatforms. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAiDataPlatforms = oci.oci.getAiDataPlatformAiDataPlatforms({ * compartmentId: compartmentId, * displayName: aiDataPlatformDisplayName, * excludeLifecycleState: aiDataPlatformExcludeLifecycleState, * id: aiDataPlatformId, * includeLegacy: aiDataPlatformIncludeLegacy, * state: aiDataPlatformState, * }); * ``` */ export declare function getAiDataPlatformAiDataPlatformsOutput(args?: GetAiDataPlatformAiDataPlatformsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAiDataPlatformAiDataPlatforms. */ export interface GetAiDataPlatformAiDataPlatformsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: pulumi.Input; /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; /** * A filter to exclude resources that match the given lifecycle state. The state value is case-insensitive. */ excludeLifecycleState?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the AiDataPlatform. */ id?: pulumi.Input; /** * This flag will determine if legacy instances will be returned. */ includeLegacy?: pulumi.Input; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getAiDataPlatformAiDataPlatforms.d.ts.map