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 Model Version Sets in Oracle Cloud Infrastructure Data Science service. * * Lists model version sets in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testModelVersionSets = oci.datascience.getModelVersionSets({ * compartmentId: compartmentId, * category: modelVersionSetCategory, * createdBy: modelVersionSetCreatedBy, * id: modelVersionSetId, * name: modelVersionSetName, * projectId: testProject.id, * state: modelVersionSetState, * }); * ``` */ export declare function getModelVersionSets(args: GetModelVersionSetsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getModelVersionSets. */ export interface GetModelVersionSetsArgs { /** * Specifies the type of model version sets to list. By default, user model version sets are listed. */ category?: string; /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the resource. */ createdBy?: string; filters?: inputs.DataScience.GetModelVersionSetsFilter[]; /** * Filter results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resource type. */ id?: string; /** * A filter to return only resources that match the entire name given. */ name?: string; /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project. */ projectId?: string; /** * Filter results by the specified lifecycle state. Must be a valid state for the resource type. */ state?: string; } /** * A collection of values returned by getModelVersionSets. */ export interface GetModelVersionSetsResult { /** * The category of the model version set. */ readonly category?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the model version set compartment. */ readonly compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the model version set. */ readonly createdBy?: string; readonly filters?: outputs.DataScience.GetModelVersionSetsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the model version set. */ readonly id?: string; /** * The list of model_version_sets. */ readonly modelVersionSets: outputs.DataScience.GetModelVersionSetsModelVersionSet[]; /** * A user-friendly name for the resource. It must be unique and can't be modified. */ readonly name?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project associated with the model version set. */ readonly projectId?: string; /** * The state of the model version set. */ readonly state?: string; } /** * This data source provides the list of Model Version Sets in Oracle Cloud Infrastructure Data Science service. * * Lists model version sets in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testModelVersionSets = oci.datascience.getModelVersionSets({ * compartmentId: compartmentId, * category: modelVersionSetCategory, * createdBy: modelVersionSetCreatedBy, * id: modelVersionSetId, * name: modelVersionSetName, * projectId: testProject.id, * state: modelVersionSetState, * }); * ``` */ export declare function getModelVersionSetsOutput(args: GetModelVersionSetsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getModelVersionSets. */ export interface GetModelVersionSetsOutputArgs { /** * Specifies the type of model version sets to list. By default, user model version sets are listed. */ category?: pulumi.Input; /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the resource. */ createdBy?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Filter results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resource type. */ id?: pulumi.Input; /** * A filter to return only resources that match the entire name given. */ name?: pulumi.Input; /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project. */ projectId?: pulumi.Input; /** * Filter results by the specified lifecycle state. Must be a valid state for the resource type. */ state?: pulumi.Input; } //# sourceMappingURL=getModelVersionSets.d.ts.map