import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Model Group resource in Oracle Cloud Infrastructure Data Science service. * * Retrieves the Model Group resource based on the specified modelGroup id. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testModelGroup = oci.datascience.getModelGroup({ * modelGroupId: testModelGroupOciDatascienceModelGroup.id, * }); * ``` */ export declare function getModelGroup(args: GetModelGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getModelGroup. */ export interface GetModelGroupArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the modelGroup. */ modelGroupId: string; } /** * A collection of values returned by getModelGroup. */ export interface GetModelGroupResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the modelGroup's compartment. */ readonly compartmentId: string; /** * The type of the model group create operation. */ readonly createType: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the modelGroup. */ 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; }; /** * Description of model metadata. */ 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 modelGroup. */ readonly id: string; /** * Details about the lifecycle state of the model group. */ readonly lifecycleDetails: string; /** * List of member models (inferenceKey & modelId) to be associated with the model group. */ readonly memberModelEntries: outputs.DataScience.GetModelGroupMemberModelEntry[]; readonly modelGroupCloneSourceDetails: outputs.DataScience.GetModelGroupModelGroupCloneSourceDetail[]; /** * The model group details. */ readonly modelGroupDetails: outputs.DataScience.GetModelGroupModelGroupDetail[]; readonly modelGroupId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the model group version history to which the modelGroup is associated. */ readonly modelGroupVersionHistoryId: string; /** * The name of the model group version history to which the model group is associated. */ readonly modelGroupVersionHistoryName: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project associated with the modelGroup. */ readonly projectId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the model group used for the clone operation. */ readonly sourceModelGroupId: string; /** * The state of the modelGroup. */ 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; /** * Unique identifier assigned to each version of the model group. It would be auto-incremented number generated by service. */ readonly versionId: string; /** * An additional description of the lifecycle state of the model group. */ readonly versionLabel: string; } /** * This data source provides details about a specific Model Group resource in Oracle Cloud Infrastructure Data Science service. * * Retrieves the Model Group resource based on the specified modelGroup id. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testModelGroup = oci.datascience.getModelGroup({ * modelGroupId: testModelGroupOciDatascienceModelGroup.id, * }); * ``` */ export declare function getModelGroupOutput(args: GetModelGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getModelGroup. */ export interface GetModelGroupOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the modelGroup. */ modelGroupId: pulumi.Input; } //# sourceMappingURL=getModelGroup.d.ts.map