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 Ml Application Implementations in Oracle Cloud Infrastructure Data Science service. * * Returns a list of MlApplicationImplementations. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMlApplicationImplementations = oci.datascience.getMlApplicationImplementations({ * compartmentId: compartmentId, * compartmentIdInSubtree: mlApplicationImplementationCompartmentIdInSubtree === "true", * mlApplicationId: testMlApplication.id, * mlApplicationImplementationId: testMlApplicationImplementation.id, * name: mlApplicationImplementationName, * state: mlApplicationImplementationState, * }); * ``` */ export declare function getMlApplicationImplementations(args: GetMlApplicationImplementationsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMlApplicationImplementations. */ export interface GetMlApplicationImplementationsArgs { /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * If it is true search must include all results from descendant compartments. Value true is allowed only if compartmentId refers to root compartment. */ compartmentIdInSubtree?: boolean; filters?: inputs.DataScience.GetMlApplicationImplementationsFilter[]; /** * unique MlApplication identifier */ mlApplicationId?: string; /** * unique MlApplicationImplementation identifier */ mlApplicationImplementationId?: string; /** * A filter to return only resources that match the entire name given. */ name?: string; /** * A filter to return only resources with lifecycleState matching the given lifecycleState. */ state?: string; } /** * A collection of values returned by getMlApplicationImplementations. */ export interface GetMlApplicationImplementationsResult { /** * The OCID of the compartment where ML Application Implementation is created. */ readonly compartmentId: string; readonly compartmentIdInSubtree?: boolean; readonly filters?: outputs.DataScience.GetMlApplicationImplementationsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The OCID of the ML Application implemented by this ML Application Implementation. */ readonly mlApplicationId?: string; /** * The list of ml_application_implementation_collection. */ readonly mlApplicationImplementationCollections: outputs.DataScience.GetMlApplicationImplementationsMlApplicationImplementationCollection[]; readonly mlApplicationImplementationId?: string; /** * ML Application Implementation name which is unique for given ML Application. */ readonly name?: string; /** * The current state of the MlApplicationImplementation. */ readonly state?: string; } /** * This data source provides the list of Ml Application Implementations in Oracle Cloud Infrastructure Data Science service. * * Returns a list of MlApplicationImplementations. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMlApplicationImplementations = oci.datascience.getMlApplicationImplementations({ * compartmentId: compartmentId, * compartmentIdInSubtree: mlApplicationImplementationCompartmentIdInSubtree === "true", * mlApplicationId: testMlApplication.id, * mlApplicationImplementationId: testMlApplicationImplementation.id, * name: mlApplicationImplementationName, * state: mlApplicationImplementationState, * }); * ``` */ export declare function getMlApplicationImplementationsOutput(args: GetMlApplicationImplementationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getMlApplicationImplementations. */ export interface GetMlApplicationImplementationsOutputArgs { /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * If it is true search must include all results from descendant compartments. Value true is allowed only if compartmentId refers to root compartment. */ compartmentIdInSubtree?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * unique MlApplication identifier */ mlApplicationId?: pulumi.Input; /** * unique MlApplicationImplementation identifier */ mlApplicationImplementationId?: pulumi.Input; /** * A filter to return only resources that match the entire name given. */ name?: pulumi.Input; /** * A filter to return only resources with lifecycleState matching the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getMlApplicationImplementations.d.ts.map