1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataScience
  5. ModelGroupVersionHistory
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

oci.DataScience.ModelGroupVersionHistory

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

    This resource provides the Model Group Version History resource in Oracle Cloud Infrastructure Data Science service.

    Creates a new modelGroupVersionHistory.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testModelGroupVersionHistory = new oci.datascience.ModelGroupVersionHistory("test_model_group_version_history", {
        compartmentId: compartmentId,
        projectId: testProject.id,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        description: modelGroupVersionHistoryDescription,
        displayName: modelGroupVersionHistoryDisplayName,
        freeformTags: {
            Department: "Finance",
        },
        latestModelGroupId: testModelGroup.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_model_group_version_history = oci.datascience.ModelGroupVersionHistory("test_model_group_version_history",
        compartment_id=compartment_id,
        project_id=test_project["id"],
        defined_tags={
            "Operations.CostCenter": "42",
        },
        description=model_group_version_history_description,
        display_name=model_group_version_history_display_name,
        freeform_tags={
            "Department": "Finance",
        },
        latest_model_group_id=test_model_group["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/datascience"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datascience.NewModelGroupVersionHistory(ctx, "test_model_group_version_history", &datascience.ModelGroupVersionHistoryArgs{
    			CompartmentId: pulumi.Any(compartmentId),
    			ProjectId:     pulumi.Any(testProject.Id),
    			DefinedTags: pulumi.StringMap{
    				"Operations.CostCenter": pulumi.String("42"),
    			},
    			Description: pulumi.Any(modelGroupVersionHistoryDescription),
    			DisplayName: pulumi.Any(modelGroupVersionHistoryDisplayName),
    			FreeformTags: pulumi.StringMap{
    				"Department": pulumi.String("Finance"),
    			},
    			LatestModelGroupId: pulumi.Any(testModelGroup.Id),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testModelGroupVersionHistory = new Oci.DataScience.ModelGroupVersionHistory("test_model_group_version_history", new()
        {
            CompartmentId = compartmentId,
            ProjectId = testProject.Id,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            Description = modelGroupVersionHistoryDescription,
            DisplayName = modelGroupVersionHistoryDisplayName,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            LatestModelGroupId = testModelGroup.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DataScience.ModelGroupVersionHistory;
    import com.pulumi.oci.DataScience.ModelGroupVersionHistoryArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var testModelGroupVersionHistory = new ModelGroupVersionHistory("testModelGroupVersionHistory", ModelGroupVersionHistoryArgs.builder()
                .compartmentId(compartmentId)
                .projectId(testProject.id())
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .description(modelGroupVersionHistoryDescription)
                .displayName(modelGroupVersionHistoryDisplayName)
                .freeformTags(Map.of("Department", "Finance"))
                .latestModelGroupId(testModelGroup.id())
                .build());
    
        }
    }
    
    resources:
      testModelGroupVersionHistory:
        type: oci:DataScience:ModelGroupVersionHistory
        name: test_model_group_version_history
        properties:
          compartmentId: ${compartmentId}
          projectId: ${testProject.id}
          definedTags:
            Operations.CostCenter: '42'
          description: ${modelGroupVersionHistoryDescription}
          displayName: ${modelGroupVersionHistoryDisplayName}
          freeformTags:
            Department: Finance
          latestModelGroupId: ${testModelGroup.id}
    

    Create ModelGroupVersionHistory Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ModelGroupVersionHistory(name: string, args: ModelGroupVersionHistoryArgs, opts?: CustomResourceOptions);
    @overload
    def ModelGroupVersionHistory(resource_name: str,
                                 args: ModelGroupVersionHistoryArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def ModelGroupVersionHistory(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 compartment_id: Optional[str] = None,
                                 project_id: Optional[str] = None,
                                 defined_tags: Optional[Mapping[str, str]] = None,
                                 description: Optional[str] = None,
                                 display_name: Optional[str] = None,
                                 freeform_tags: Optional[Mapping[str, str]] = None,
                                 latest_model_group_id: Optional[str] = None)
    func NewModelGroupVersionHistory(ctx *Context, name string, args ModelGroupVersionHistoryArgs, opts ...ResourceOption) (*ModelGroupVersionHistory, error)
    public ModelGroupVersionHistory(string name, ModelGroupVersionHistoryArgs args, CustomResourceOptions? opts = null)
    public ModelGroupVersionHistory(String name, ModelGroupVersionHistoryArgs args)
    public ModelGroupVersionHistory(String name, ModelGroupVersionHistoryArgs args, CustomResourceOptions options)
    
    type: oci:DataScience:ModelGroupVersionHistory
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ModelGroupVersionHistoryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ModelGroupVersionHistoryArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ModelGroupVersionHistoryArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ModelGroupVersionHistoryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ModelGroupVersionHistoryArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var modelGroupVersionHistoryResource = new Oci.DataScience.ModelGroupVersionHistory("modelGroupVersionHistoryResource", new()
    {
        CompartmentId = "string",
        ProjectId = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        Description = "string",
        DisplayName = "string",
        FreeformTags = 
        {
            { "string", "string" },
        },
        LatestModelGroupId = "string",
    });
    
    example, err := datascience.NewModelGroupVersionHistory(ctx, "modelGroupVersionHistoryResource", &datascience.ModelGroupVersionHistoryArgs{
    	CompartmentId: pulumi.String("string"),
    	ProjectId:     pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Description: pulumi.String("string"),
    	DisplayName: pulumi.String("string"),
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	LatestModelGroupId: pulumi.String("string"),
    })
    
    var modelGroupVersionHistoryResource = new ModelGroupVersionHistory("modelGroupVersionHistoryResource", ModelGroupVersionHistoryArgs.builder()
        .compartmentId("string")
        .projectId("string")
        .definedTags(Map.of("string", "string"))
        .description("string")
        .displayName("string")
        .freeformTags(Map.of("string", "string"))
        .latestModelGroupId("string")
        .build());
    
    model_group_version_history_resource = oci.datascience.ModelGroupVersionHistory("modelGroupVersionHistoryResource",
        compartment_id="string",
        project_id="string",
        defined_tags={
            "string": "string",
        },
        description="string",
        display_name="string",
        freeform_tags={
            "string": "string",
        },
        latest_model_group_id="string")
    
    const modelGroupVersionHistoryResource = new oci.datascience.ModelGroupVersionHistory("modelGroupVersionHistoryResource", {
        compartmentId: "string",
        projectId: "string",
        definedTags: {
            string: "string",
        },
        description: "string",
        displayName: "string",
        freeformTags: {
            string: "string",
        },
        latestModelGroupId: "string",
    });
    
    type: oci:DataScience:ModelGroupVersionHistory
    properties:
        compartmentId: string
        definedTags:
            string: string
        description: string
        displayName: string
        freeformTags:
            string: string
        latestModelGroupId: string
        projectId: string
    

    ModelGroupVersionHistory Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ModelGroupVersionHistory resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of the compartment to create the model group version history in.
    ProjectId string

    The OCID of the project to associate with the model group version history.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    (Updatable) A short description of the model version history.
    DisplayName string
    (Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version history
    FreeformTags Dictionary<string, string>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    LatestModelGroupId string
    (Updatable) The OCID of the latest version of the model group to be associated.
    CompartmentId string
    (Updatable) The OCID of the compartment to create the model group version history in.
    ProjectId string

    The OCID of the project to associate with the model group version history.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    (Updatable) A short description of the model version history.
    DisplayName string
    (Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version history
    FreeformTags map[string]string
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    LatestModelGroupId string
    (Updatable) The OCID of the latest version of the model group to be associated.
    compartmentId String
    (Updatable) The OCID of the compartment to create the model group version history in.
    projectId String

    The OCID of the project to associate with the model group version history.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    (Updatable) A short description of the model version history.
    displayName String
    (Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version history
    freeformTags Map<String,String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    latestModelGroupId String
    (Updatable) The OCID of the latest version of the model group to be associated.
    compartmentId string
    (Updatable) The OCID of the compartment to create the model group version history in.
    projectId string

    The OCID of the project to associate with the model group version history.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description string
    (Updatable) A short description of the model version history.
    displayName string
    (Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version history
    freeformTags {[key: string]: string}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    latestModelGroupId string
    (Updatable) The OCID of the latest version of the model group to be associated.
    compartment_id str
    (Updatable) The OCID of the compartment to create the model group version history in.
    project_id str

    The OCID of the project to associate with the model group version history.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description str
    (Updatable) A short description of the model version history.
    display_name str
    (Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version history
    freeform_tags Mapping[str, str]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    latest_model_group_id str
    (Updatable) The OCID of the latest version of the model group to be associated.
    compartmentId String
    (Updatable) The OCID of the compartment to create the model group version history in.
    projectId String

    The OCID of the project to associate with the model group version history.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    (Updatable) A short description of the model version history.
    displayName String
    (Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version history
    freeformTags Map<String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    latestModelGroupId String
    (Updatable) The OCID of the latest version of the model group to be associated.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ModelGroupVersionHistory resource produces the following output properties:

    CreatedBy string
    The OCID of the user who created the modelGroupVersionHistory.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    Details about the lifecycle state of the model group version history.
    State string
    The state of the modelGroupVersionHistory.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    TimeUpdated string
    The date and time the resource was last updated in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    CreatedBy string
    The OCID of the user who created the modelGroupVersionHistory.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    Details about the lifecycle state of the model group version history.
    State string
    The state of the modelGroupVersionHistory.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    TimeUpdated string
    The date and time the resource was last updated in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    createdBy String
    The OCID of the user who created the modelGroupVersionHistory.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    Details about the lifecycle state of the model group version history.
    state String
    The state of the modelGroupVersionHistory.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    timeUpdated String
    The date and time the resource was last updated in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    createdBy string
    The OCID of the user who created the modelGroupVersionHistory.
    id string
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails string
    Details about the lifecycle state of the model group version history.
    state string
    The state of the modelGroupVersionHistory.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    timeUpdated string
    The date and time the resource was last updated in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    created_by str
    The OCID of the user who created the modelGroupVersionHistory.
    id str
    The provider-assigned unique ID for this managed resource.
    lifecycle_details str
    Details about the lifecycle state of the model group version history.
    state str
    The state of the modelGroupVersionHistory.
    system_tags Mapping[str, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    time_updated str
    The date and time the resource was last updated in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    createdBy String
    The OCID of the user who created the modelGroupVersionHistory.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    Details about the lifecycle state of the model group version history.
    state String
    The state of the modelGroupVersionHistory.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    timeUpdated String
    The date and time the resource was last updated in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z

    Look up Existing ModelGroupVersionHistory Resource

    Get an existing ModelGroupVersionHistory resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ModelGroupVersionHistoryState, opts?: CustomResourceOptions): ModelGroupVersionHistory
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            created_by: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            latest_model_group_id: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            project_id: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> ModelGroupVersionHistory
    func GetModelGroupVersionHistory(ctx *Context, name string, id IDInput, state *ModelGroupVersionHistoryState, opts ...ResourceOption) (*ModelGroupVersionHistory, error)
    public static ModelGroupVersionHistory Get(string name, Input<string> id, ModelGroupVersionHistoryState? state, CustomResourceOptions? opts = null)
    public static ModelGroupVersionHistory get(String name, Output<String> id, ModelGroupVersionHistoryState state, CustomResourceOptions options)
    resources:  _:    type: oci:DataScience:ModelGroupVersionHistory    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CompartmentId string
    (Updatable) The OCID of the compartment to create the model group version history in.
    CreatedBy string
    The OCID of the user who created the modelGroupVersionHistory.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    (Updatable) A short description of the model version history.
    DisplayName string
    (Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version history
    FreeformTags Dictionary<string, string>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    LatestModelGroupId string
    (Updatable) The OCID of the latest version of the model group to be associated.
    LifecycleDetails string
    Details about the lifecycle state of the model group version history.
    ProjectId string

    The OCID of the project to associate with the model group version history.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    State string
    The state of the modelGroupVersionHistory.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    TimeUpdated string
    The date and time the resource was last updated in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    CompartmentId string
    (Updatable) The OCID of the compartment to create the model group version history in.
    CreatedBy string
    The OCID of the user who created the modelGroupVersionHistory.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    (Updatable) A short description of the model version history.
    DisplayName string
    (Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version history
    FreeformTags map[string]string
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    LatestModelGroupId string
    (Updatable) The OCID of the latest version of the model group to be associated.
    LifecycleDetails string
    Details about the lifecycle state of the model group version history.
    ProjectId string

    The OCID of the project to associate with the model group version history.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    State string
    The state of the modelGroupVersionHistory.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    TimeUpdated string
    The date and time the resource was last updated in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    compartmentId String
    (Updatable) The OCID of the compartment to create the model group version history in.
    createdBy String
    The OCID of the user who created the modelGroupVersionHistory.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    (Updatable) A short description of the model version history.
    displayName String
    (Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version history
    freeformTags Map<String,String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    latestModelGroupId String
    (Updatable) The OCID of the latest version of the model group to be associated.
    lifecycleDetails String
    Details about the lifecycle state of the model group version history.
    projectId String

    The OCID of the project to associate with the model group version history.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state String
    The state of the modelGroupVersionHistory.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    timeUpdated String
    The date and time the resource was last updated in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    compartmentId string
    (Updatable) The OCID of the compartment to create the model group version history in.
    createdBy string
    The OCID of the user who created the modelGroupVersionHistory.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description string
    (Updatable) A short description of the model version history.
    displayName string
    (Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version history
    freeformTags {[key: string]: string}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    latestModelGroupId string
    (Updatable) The OCID of the latest version of the model group to be associated.
    lifecycleDetails string
    Details about the lifecycle state of the model group version history.
    projectId string

    The OCID of the project to associate with the model group version history.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state string
    The state of the modelGroupVersionHistory.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    timeUpdated string
    The date and time the resource was last updated in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    compartment_id str
    (Updatable) The OCID of the compartment to create the model group version history in.
    created_by str
    The OCID of the user who created the modelGroupVersionHistory.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description str
    (Updatable) A short description of the model version history.
    display_name str
    (Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version history
    freeform_tags Mapping[str, str]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    latest_model_group_id str
    (Updatable) The OCID of the latest version of the model group to be associated.
    lifecycle_details str
    Details about the lifecycle state of the model group version history.
    project_id str

    The OCID of the project to associate with the model group version history.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state str
    The state of the modelGroupVersionHistory.
    system_tags Mapping[str, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    time_updated str
    The date and time the resource was last updated in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    compartmentId String
    (Updatable) The OCID of the compartment to create the model group version history in.
    createdBy String
    The OCID of the user who created the modelGroupVersionHistory.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    (Updatable) A short description of the model version history.
    displayName String
    (Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version history
    freeformTags Map<String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    latestModelGroupId String
    (Updatable) The OCID of the latest version of the model group to be associated.
    lifecycleDetails String
    Details about the lifecycle state of the model group version history.
    projectId String

    The OCID of the project to associate with the model group version history.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state String
    The state of the modelGroupVersionHistory.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
    timeUpdated String
    The date and time the resource was last updated in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z

    Import

    ModelGroupVersionHistories can be imported using the id, e.g.

    $ pulumi import oci:DataScience/modelGroupVersionHistory:ModelGroupVersionHistory test_model_group_version_history "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi