import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Model Group Version History resource in Oracle Cloud Infrastructure Data Science service. * * Gets the specified modelGroupVersionHistory's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testModelGroupVersionHistory = oci.datascience.getModelGroupVersionHistory({ * modelGroupVersionHistoryId: testModelGroupVersionHistoryOciDatascienceModelGroupVersionHistory.id, * }); * ``` */ export declare function getModelGroupVersionHistory(args: GetModelGroupVersionHistoryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getModelGroupVersionHistory. */ export interface GetModelGroupVersionHistoryArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the modelGroupVersionHistory. */ modelGroupVersionHistoryId: string; } /** * A collection of values returned by getModelGroupVersionHistory. */ export interface GetModelGroupVersionHistoryResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the modelGroupVersionHistory's compartment. */ readonly compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the modelGroupVersionHistory. */ 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 modelGroupVersionHistory. */ readonly description: string; /** * A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information. */ readonly displayName: 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 modelGroupVersionHistory. */ readonly id: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the latest version of the model group associated. */ readonly latestModelGroupId: string; /** * Details about the lifecycle state of the model group version history. */ readonly lifecycleDetails: string; readonly modelGroupVersionHistoryId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project associated with the modelGroupVersionHistory. */ readonly projectId: string; /** * The state of the modelGroupVersionHistory. */ 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 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 the resource was last updated 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 Group Version History resource in Oracle Cloud Infrastructure Data Science service. * * Gets the specified modelGroupVersionHistory's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testModelGroupVersionHistory = oci.datascience.getModelGroupVersionHistory({ * modelGroupVersionHistoryId: testModelGroupVersionHistoryOciDatascienceModelGroupVersionHistory.id, * }); * ``` */ export declare function getModelGroupVersionHistoryOutput(args: GetModelGroupVersionHistoryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getModelGroupVersionHistory. */ export interface GetModelGroupVersionHistoryOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the modelGroupVersionHistory. */ modelGroupVersionHistoryId: pulumi.Input; } //# sourceMappingURL=getModelGroupVersionHistory.d.ts.map