import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Model Version Set resource in Oracle Cloud Infrastructure Data Science service. * * Gets the specified model version set information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testModelVersionSet = oci.datascience.getModelVersionSet({ * modelVersionSetId: testModelVersionSetOciDatascienceModelVersionSet.id, * }); * ``` */ export declare function getModelVersionSet(args: GetModelVersionSetArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getModelVersionSet. */ export interface GetModelVersionSetArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the model version set. */ modelVersionSetId: string; } /** * A collection of values returned by getModelVersionSet. */ export interface GetModelVersionSetResult { /** * 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; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A short description of the model version set. */ readonly description: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the model version set. */ readonly id: string; readonly modelVersionSetId: string; /** * 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; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time that the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2019-08-25T21:10:29.41Z */ readonly timeCreated: string; /** * The date and time that the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2019-08-25T21:10:29.41Z */ readonly timeUpdated: string; } /** * This data source provides details about a specific Model Version Set resource in Oracle Cloud Infrastructure Data Science service. * * Gets the specified model version set information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testModelVersionSet = oci.datascience.getModelVersionSet({ * modelVersionSetId: testModelVersionSetOciDatascienceModelVersionSet.id, * }); * ``` */ export declare function getModelVersionSetOutput(args: GetModelVersionSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getModelVersionSet. */ export interface GetModelVersionSetOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the model version set. */ modelVersionSetId: pulumi.Input; } //# sourceMappingURL=getModelVersionSet.d.ts.map