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

oci.DataScience.getModelGroupVersionHistories

Explore with Pulumi AI

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

    This data source provides the list of Model Group Version Histories in Oracle Cloud Infrastructure Data Science service.

    List all modelGroupVersionHistories in the specified compartment. The query must include compartmentId.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testModelGroupVersionHistories = oci.DataScience.getModelGroupVersionHistories({
        compartmentId: compartmentId,
        createdBy: modelGroupVersionHistoryCreatedBy,
        displayName: modelGroupVersionHistoryDisplayName,
        id: modelGroupVersionHistoryId,
        projectId: testProject.id,
        state: modelGroupVersionHistoryState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_model_group_version_histories = oci.DataScience.get_model_group_version_histories(compartment_id=compartment_id,
        created_by=model_group_version_history_created_by,
        display_name=model_group_version_history_display_name,
        id=model_group_version_history_id,
        project_id=test_project["id"],
        state=model_group_version_history_state)
    
    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.GetModelGroupVersionHistories(ctx, &datascience.GetModelGroupVersionHistoriesArgs{
    			CompartmentId: compartmentId,
    			CreatedBy:     pulumi.StringRef(modelGroupVersionHistoryCreatedBy),
    			DisplayName:   pulumi.StringRef(modelGroupVersionHistoryDisplayName),
    			Id:            pulumi.StringRef(modelGroupVersionHistoryId),
    			ProjectId:     pulumi.StringRef(testProject.Id),
    			State:         pulumi.StringRef(modelGroupVersionHistoryState),
    		}, nil)
    		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 testModelGroupVersionHistories = Oci.DataScience.GetModelGroupVersionHistories.Invoke(new()
        {
            CompartmentId = compartmentId,
            CreatedBy = modelGroupVersionHistoryCreatedBy,
            DisplayName = modelGroupVersionHistoryDisplayName,
            Id = modelGroupVersionHistoryId,
            ProjectId = testProject.Id,
            State = modelGroupVersionHistoryState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DataScience.DataScienceFunctions;
    import com.pulumi.oci.DataScience.inputs.GetModelGroupVersionHistoriesArgs;
    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) {
            final var testModelGroupVersionHistories = DataScienceFunctions.getModelGroupVersionHistories(GetModelGroupVersionHistoriesArgs.builder()
                .compartmentId(compartmentId)
                .createdBy(modelGroupVersionHistoryCreatedBy)
                .displayName(modelGroupVersionHistoryDisplayName)
                .id(modelGroupVersionHistoryId)
                .projectId(testProject.id())
                .state(modelGroupVersionHistoryState)
                .build());
    
        }
    }
    
    variables:
      testModelGroupVersionHistories:
        fn::invoke:
          function: oci:DataScience:getModelGroupVersionHistories
          arguments:
            compartmentId: ${compartmentId}
            createdBy: ${modelGroupVersionHistoryCreatedBy}
            displayName: ${modelGroupVersionHistoryDisplayName}
            id: ${modelGroupVersionHistoryId}
            projectId: ${testProject.id}
            state: ${modelGroupVersionHistoryState}
    

    Using getModelGroupVersionHistories

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getModelGroupVersionHistories(args: GetModelGroupVersionHistoriesArgs, opts?: InvokeOptions): Promise<GetModelGroupVersionHistoriesResult>
    function getModelGroupVersionHistoriesOutput(args: GetModelGroupVersionHistoriesOutputArgs, opts?: InvokeOptions): Output<GetModelGroupVersionHistoriesResult>
    def get_model_group_version_histories(compartment_id: Optional[str] = None,
                                          created_by: Optional[str] = None,
                                          display_name: Optional[str] = None,
                                          filters: Optional[Sequence[GetModelGroupVersionHistoriesFilter]] = None,
                                          id: Optional[str] = None,
                                          project_id: Optional[str] = None,
                                          state: Optional[str] = None,
                                          opts: Optional[InvokeOptions] = None) -> GetModelGroupVersionHistoriesResult
    def get_model_group_version_histories_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                          created_by: Optional[pulumi.Input[str]] = None,
                                          display_name: Optional[pulumi.Input[str]] = None,
                                          filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetModelGroupVersionHistoriesFilterArgs]]]] = None,
                                          id: Optional[pulumi.Input[str]] = None,
                                          project_id: Optional[pulumi.Input[str]] = None,
                                          state: Optional[pulumi.Input[str]] = None,
                                          opts: Optional[InvokeOptions] = None) -> Output[GetModelGroupVersionHistoriesResult]
    func GetModelGroupVersionHistories(ctx *Context, args *GetModelGroupVersionHistoriesArgs, opts ...InvokeOption) (*GetModelGroupVersionHistoriesResult, error)
    func GetModelGroupVersionHistoriesOutput(ctx *Context, args *GetModelGroupVersionHistoriesOutputArgs, opts ...InvokeOption) GetModelGroupVersionHistoriesResultOutput

    > Note: This function is named GetModelGroupVersionHistories in the Go SDK.

    public static class GetModelGroupVersionHistories 
    {
        public static Task<GetModelGroupVersionHistoriesResult> InvokeAsync(GetModelGroupVersionHistoriesArgs args, InvokeOptions? opts = null)
        public static Output<GetModelGroupVersionHistoriesResult> Invoke(GetModelGroupVersionHistoriesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetModelGroupVersionHistoriesResult> getModelGroupVersionHistories(GetModelGroupVersionHistoriesArgs args, InvokeOptions options)
    public static Output<GetModelGroupVersionHistoriesResult> getModelGroupVersionHistories(GetModelGroupVersionHistoriesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DataScience/getModelGroupVersionHistories:getModelGroupVersionHistories
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    Filter results by the OCID of the compartment.
    CreatedBy string
    Filter results by the OCID of the user who created the resource.
    DisplayName string
    Filter results by its user-friendly name.
    Filters List<GetModelGroupVersionHistoriesFilter>
    Id string
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    ProjectId string
    Filter results by the OCID of the project.
    State string
    A filter to return resources matching the given lifecycleState.
    CompartmentId string
    Filter results by the OCID of the compartment.
    CreatedBy string
    Filter results by the OCID of the user who created the resource.
    DisplayName string
    Filter results by its user-friendly name.
    Filters []GetModelGroupVersionHistoriesFilter
    Id string
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    ProjectId string
    Filter results by the OCID of the project.
    State string
    A filter to return resources matching the given lifecycleState.
    compartmentId String
    Filter results by the OCID of the compartment.
    createdBy String
    Filter results by the OCID of the user who created the resource.
    displayName String
    Filter results by its user-friendly name.
    filters List<GetModelGroupVersionHistoriesFilter>
    id String
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    projectId String
    Filter results by the OCID of the project.
    state String
    A filter to return resources matching the given lifecycleState.
    compartmentId string
    Filter results by the OCID of the compartment.
    createdBy string
    Filter results by the OCID of the user who created the resource.
    displayName string
    Filter results by its user-friendly name.
    filters GetModelGroupVersionHistoriesFilter[]
    id string
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    projectId string
    Filter results by the OCID of the project.
    state string
    A filter to return resources matching the given lifecycleState.
    compartment_id str
    Filter results by the OCID of the compartment.
    created_by str
    Filter results by the OCID of the user who created the resource.
    display_name str
    Filter results by its user-friendly name.
    filters Sequence[GetModelGroupVersionHistoriesFilter]
    id str
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    project_id str
    Filter results by the OCID of the project.
    state str
    A filter to return resources matching the given lifecycleState.
    compartmentId String
    Filter results by the OCID of the compartment.
    createdBy String
    Filter results by the OCID of the user who created the resource.
    displayName String
    Filter results by its user-friendly name.
    filters List<Property Map>
    id String
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    projectId String
    Filter results by the OCID of the project.
    state String
    A filter to return resources matching the given lifecycleState.

    getModelGroupVersionHistories Result

    The following output properties are available:

    CompartmentId string
    The OCID of the modelGroupVersionHistory's compartment.
    ModelGroupVersionHistories List<GetModelGroupVersionHistoriesModelGroupVersionHistory>
    The list of model_group_version_histories.
    CreatedBy string
    The OCID of the user who created the modelGroupVersionHistory.
    DisplayName string
    A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
    Filters List<GetModelGroupVersionHistoriesFilter>
    Id string
    The OCID of the modelGroupVersionHistory.
    ProjectId string
    The OCID of the project associated with the modelGroupVersionHistory.
    State string
    The state of the modelGroupVersionHistory.
    CompartmentId string
    The OCID of the modelGroupVersionHistory's compartment.
    ModelGroupVersionHistories []GetModelGroupVersionHistoriesModelGroupVersionHistory
    The list of model_group_version_histories.
    CreatedBy string
    The OCID of the user who created the modelGroupVersionHistory.
    DisplayName string
    A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
    Filters []GetModelGroupVersionHistoriesFilter
    Id string
    The OCID of the modelGroupVersionHistory.
    ProjectId string
    The OCID of the project associated with the modelGroupVersionHistory.
    State string
    The state of the modelGroupVersionHistory.
    compartmentId String
    The OCID of the modelGroupVersionHistory's compartment.
    modelGroupVersionHistories List<GetModelGroupVersionHistoriesModelGroupVersionHistory>
    The list of model_group_version_histories.
    createdBy String
    The OCID of the user who created the modelGroupVersionHistory.
    displayName String
    A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
    filters List<GetModelGroupVersionHistoriesFilter>
    id String
    The OCID of the modelGroupVersionHistory.
    projectId String
    The OCID of the project associated with the modelGroupVersionHistory.
    state String
    The state of the modelGroupVersionHistory.
    compartmentId string
    The OCID of the modelGroupVersionHistory's compartment.
    modelGroupVersionHistories GetModelGroupVersionHistoriesModelGroupVersionHistory[]
    The list of model_group_version_histories.
    createdBy string
    The OCID of the user who created the modelGroupVersionHistory.
    displayName string
    A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
    filters GetModelGroupVersionHistoriesFilter[]
    id string
    The OCID of the modelGroupVersionHistory.
    projectId string
    The OCID of the project associated with the modelGroupVersionHistory.
    state string
    The state of the modelGroupVersionHistory.
    compartment_id str
    The OCID of the modelGroupVersionHistory's compartment.
    model_group_version_histories Sequence[GetModelGroupVersionHistoriesModelGroupVersionHistory]
    The list of model_group_version_histories.
    created_by str
    The OCID of the user who created the modelGroupVersionHistory.
    display_name str
    A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
    filters Sequence[GetModelGroupVersionHistoriesFilter]
    id str
    The OCID of the modelGroupVersionHistory.
    project_id str
    The OCID of the project associated with the modelGroupVersionHistory.
    state str
    The state of the modelGroupVersionHistory.
    compartmentId String
    The OCID of the modelGroupVersionHistory's compartment.
    modelGroupVersionHistories List<Property Map>
    The list of model_group_version_histories.
    createdBy String
    The OCID of the user who created the modelGroupVersionHistory.
    displayName String
    A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
    filters List<Property Map>
    id String
    The OCID of the modelGroupVersionHistory.
    projectId String
    The OCID of the project associated with the modelGroupVersionHistory.
    state String
    The state of the modelGroupVersionHistory.

    Supporting Types

    GetModelGroupVersionHistoriesFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetModelGroupVersionHistoriesModelGroupVersionHistory

    CompartmentId string
    Filter results by the OCID of the compartment.
    CreatedBy string
    Filter results by the OCID of the user who created the resource.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    A short description of the modelGroupVersionHistory.
    DisplayName string
    Filter results by its user-friendly name.
    FreeformTags Dictionary<string, 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. Example: {"Department": "Finance"}
    Id string
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    LatestModelGroupId string
    The OCID of the latest version of the model group associated.
    LifecycleDetails string
    Details about the lifecycle state of the model group version history.
    ProjectId string
    Filter results by the OCID of the project.
    State string
    A filter to return resources matching the given lifecycleState.
    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
    Filter results by the OCID of the compartment.
    CreatedBy string
    Filter results by the OCID of the user who created the resource.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    A short description of the modelGroupVersionHistory.
    DisplayName string
    Filter results by its user-friendly name.
    FreeformTags map[string]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. Example: {"Department": "Finance"}
    Id string
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    LatestModelGroupId string
    The OCID of the latest version of the model group associated.
    LifecycleDetails string
    Details about the lifecycle state of the model group version history.
    ProjectId string
    Filter results by the OCID of the project.
    State string
    A filter to return resources matching the given lifecycleState.
    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
    Filter results by the OCID of the compartment.
    createdBy String
    Filter results by the OCID of the user who created the resource.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    A short description of the modelGroupVersionHistory.
    displayName String
    Filter results by its user-friendly name.
    freeformTags Map<String,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. Example: {"Department": "Finance"}
    id String
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    latestModelGroupId String
    The OCID of the latest version of the model group associated.
    lifecycleDetails String
    Details about the lifecycle state of the model group version history.
    projectId String
    Filter results by the OCID of the project.
    state String
    A filter to return resources matching the given lifecycleState.
    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
    Filter results by the OCID of the compartment.
    createdBy string
    Filter results by the OCID of the user who created the resource.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description string
    A short description of the modelGroupVersionHistory.
    displayName string
    Filter results by its user-friendly name.
    freeformTags {[key: string]: 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. Example: {"Department": "Finance"}
    id string
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    latestModelGroupId string
    The OCID of the latest version of the model group associated.
    lifecycleDetails string
    Details about the lifecycle state of the model group version history.
    projectId string
    Filter results by the OCID of the project.
    state string
    A filter to return resources matching the given lifecycleState.
    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
    Filter results by the OCID of the compartment.
    created_by str
    Filter results by the OCID of the user who created the resource.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description str
    A short description of the modelGroupVersionHistory.
    display_name str
    Filter results by its user-friendly name.
    freeform_tags Mapping[str, str]
    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"}
    id str
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    latest_model_group_id str
    The OCID of the latest version of the model group associated.
    lifecycle_details str
    Details about the lifecycle state of the model group version history.
    project_id str
    Filter results by the OCID of the project.
    state str
    A filter to return resources matching the given lifecycleState.
    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
    Filter results by the OCID of the compartment.
    createdBy String
    Filter results by the OCID of the user who created the resource.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    A short description of the modelGroupVersionHistory.
    displayName String
    Filter results by its user-friendly name.
    freeformTags Map<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. Example: {"Department": "Finance"}
    id String
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    latestModelGroupId String
    The OCID of the latest version of the model group associated.
    lifecycleDetails String
    Details about the lifecycle state of the model group version history.
    projectId String
    Filter results by the OCID of the project.
    state String
    A filter to return resources matching the given lifecycleState.
    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

    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