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 Fast Launch Job Configs in Oracle Cloud Infrastructure Data Science service. * * List fast launch capable job configs in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFastLaunchJobConfigs = oci.datascience.getFastLaunchJobConfigs({ * compartmentId: compartmentId, * }); * ``` */ export declare function getFastLaunchJobConfigs(args: GetFastLaunchJobConfigsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFastLaunchJobConfigs. */ export interface GetFastLaunchJobConfigsArgs { /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; filters?: inputs.DataScience.GetFastLaunchJobConfigsFilter[]; } /** * A collection of values returned by getFastLaunchJobConfigs. */ export interface GetFastLaunchJobConfigsResult { readonly compartmentId: string; /** * The list of fast_launch_job_configs. */ readonly fastLaunchJobConfigs: outputs.DataScience.GetFastLaunchJobConfigsFastLaunchJobConfig[]; readonly filters?: outputs.DataScience.GetFastLaunchJobConfigsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Fast Launch Job Configs in Oracle Cloud Infrastructure Data Science service. * * List fast launch capable job configs in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFastLaunchJobConfigs = oci.datascience.getFastLaunchJobConfigs({ * compartmentId: compartmentId, * }); * ``` */ export declare function getFastLaunchJobConfigsOutput(args: GetFastLaunchJobConfigsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFastLaunchJobConfigs. */ export interface GetFastLaunchJobConfigsOutputArgs { /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getFastLaunchJobConfigs.d.ts.map