1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataScience
  5. ModelVersionSet
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

oci.DataScience.ModelVersionSet

Explore with Pulumi AI

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

Creates a new modelVersionSet.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testModelVersionSet = new oci.datascience.ModelVersionSet("test_model_version_set", {
    compartmentId: compartmentId,
    name: modelVersionSetName,
    projectId: testProject.id,
    definedTags: {
        "Operations.CostCenter": "42",
    },
    description: modelVersionSetDescription,
    freeformTags: {
        Department: "Finance",
    },
});
Copy
import pulumi
import pulumi_oci as oci

test_model_version_set = oci.data_science.ModelVersionSet("test_model_version_set",
    compartment_id=compartment_id,
    name=model_version_set_name,
    project_id=test_project["id"],
    defined_tags={
        "Operations.CostCenter": "42",
    },
    description=model_version_set_description,
    freeform_tags={
        "Department": "Finance",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/datascience"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datascience.NewModelVersionSet(ctx, "test_model_version_set", &datascience.ModelVersionSetArgs{
			CompartmentId: pulumi.Any(compartmentId),
			Name:          pulumi.Any(modelVersionSetName),
			ProjectId:     pulumi.Any(testProject.Id),
			DefinedTags: pulumi.StringMap{
				"Operations.CostCenter": pulumi.String("42"),
			},
			Description: pulumi.Any(modelVersionSetDescription),
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testModelVersionSet = new Oci.DataScience.ModelVersionSet("test_model_version_set", new()
    {
        CompartmentId = compartmentId,
        Name = modelVersionSetName,
        ProjectId = testProject.Id,
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        Description = modelVersionSetDescription,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataScience.ModelVersionSet;
import com.pulumi.oci.DataScience.ModelVersionSetArgs;
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 testModelVersionSet = new ModelVersionSet("testModelVersionSet", ModelVersionSetArgs.builder()
            .compartmentId(compartmentId)
            .name(modelVersionSetName)
            .projectId(testProject.id())
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .description(modelVersionSetDescription)
            .freeformTags(Map.of("Department", "Finance"))
            .build());

    }
}
Copy
resources:
  testModelVersionSet:
    type: oci:DataScience:ModelVersionSet
    name: test_model_version_set
    properties:
      compartmentId: ${compartmentId}
      name: ${modelVersionSetName}
      projectId: ${testProject.id}
      definedTags:
        Operations.CostCenter: '42'
      description: ${modelVersionSetDescription}
      freeformTags:
        Department: Finance
Copy

Create ModelVersionSet Resource

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

Constructor syntax

new ModelVersionSet(name: string, args: ModelVersionSetArgs, opts?: CustomResourceOptions);
@overload
def ModelVersionSet(resource_name: str,
                    args: ModelVersionSetArgs,
                    opts: Optional[ResourceOptions] = None)

@overload
def ModelVersionSet(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,
                    freeform_tags: Optional[Mapping[str, str]] = None,
                    name: Optional[str] = None)
func NewModelVersionSet(ctx *Context, name string, args ModelVersionSetArgs, opts ...ResourceOption) (*ModelVersionSet, error)
public ModelVersionSet(string name, ModelVersionSetArgs args, CustomResourceOptions? opts = null)
public ModelVersionSet(String name, ModelVersionSetArgs args)
public ModelVersionSet(String name, ModelVersionSetArgs args, CustomResourceOptions options)
type: oci:DataScience:ModelVersionSet
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ModelVersionSetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ModelVersionSetArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ModelVersionSetArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ModelVersionSetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ModelVersionSetArgs
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 modelVersionSetResource = new Oci.DataScience.ModelVersionSet("modelVersionSetResource", new()
{
    CompartmentId = "string",
    ProjectId = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    Description = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    Name = "string",
});
Copy
example, err := DataScience.NewModelVersionSet(ctx, "modelVersionSetResource", &DataScience.ModelVersionSetArgs{
	CompartmentId: pulumi.String("string"),
	ProjectId:     pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Description: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Name: pulumi.String("string"),
})
Copy
var modelVersionSetResource = new ModelVersionSet("modelVersionSetResource", ModelVersionSetArgs.builder()
    .compartmentId("string")
    .projectId("string")
    .definedTags(Map.of("string", "string"))
    .description("string")
    .freeformTags(Map.of("string", "string"))
    .name("string")
    .build());
Copy
model_version_set_resource = oci.data_science.ModelVersionSet("modelVersionSetResource",
    compartment_id="string",
    project_id="string",
    defined_tags={
        "string": "string",
    },
    description="string",
    freeform_tags={
        "string": "string",
    },
    name="string")
Copy
const modelVersionSetResource = new oci.datascience.ModelVersionSet("modelVersionSetResource", {
    compartmentId: "string",
    projectId: "string",
    definedTags: {
        string: "string",
    },
    description: "string",
    freeformTags: {
        string: "string",
    },
    name: "string",
});
Copy
type: oci:DataScience:ModelVersionSet
properties:
    compartmentId: string
    definedTags:
        string: string
    description: string
    freeformTags:
        string: string
    name: string
    projectId: string
Copy

ModelVersionSet 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 ModelVersionSet resource accepts the following input properties:

CompartmentId This property is required. string
(Updatable) The OCID of the compartment to create the model version set in.
ProjectId
This property is required.
Changes to this property will trigger replacement.
string

The OCID of the project to associate with the model version set.

** 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 set.
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"}
Name Changes to this property will trigger replacement. string
A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version set
CompartmentId This property is required. string
(Updatable) The OCID of the compartment to create the model version set in.
ProjectId
This property is required.
Changes to this property will trigger replacement.
string

The OCID of the project to associate with the model version set.

** 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 set.
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"}
Name Changes to this property will trigger replacement. string
A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version set
compartmentId This property is required. String
(Updatable) The OCID of the compartment to create the model version set in.
projectId
This property is required.
Changes to this property will trigger replacement.
String

The OCID of the project to associate with the model version set.

** 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 set.
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"}
name Changes to this property will trigger replacement. String
A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version set
compartmentId This property is required. string
(Updatable) The OCID of the compartment to create the model version set in.
projectId
This property is required.
Changes to this property will trigger replacement.
string

The OCID of the project to associate with the model version set.

** 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 set.
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"}
name Changes to this property will trigger replacement. string
A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version set
compartment_id This property is required. str
(Updatable) The OCID of the compartment to create the model version set in.
project_id
This property is required.
Changes to this property will trigger replacement.
str

The OCID of the project to associate with the model version set.

** 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 set.
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"}
name Changes to this property will trigger replacement. str
A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version set
compartmentId This property is required. String
(Updatable) The OCID of the compartment to create the model version set in.
projectId
This property is required.
Changes to this property will trigger replacement.
String

The OCID of the project to associate with the model version set.

** 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 set.
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"}
name Changes to this property will trigger replacement. String
A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version set

Outputs

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

Category string
The category of the model version set.
CreatedBy string
The OCID of the user who created the model version set.
Id string
The provider-assigned unique ID for this managed resource.
State string
The state of the model version set.
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 that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
TimeUpdated string
The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
Category string
The category of the model version set.
CreatedBy string
The OCID of the user who created the model version set.
Id string
The provider-assigned unique ID for this managed resource.
State string
The state of the model version set.
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 that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
TimeUpdated string
The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
category String
The category of the model version set.
createdBy String
The OCID of the user who created the model version set.
id String
The provider-assigned unique ID for this managed resource.
state String
The state of the model version set.
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 that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
timeUpdated String
The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
category string
The category of the model version set.
createdBy string
The OCID of the user who created the model version set.
id string
The provider-assigned unique ID for this managed resource.
state string
The state of the model version set.
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 that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
timeUpdated string
The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
category str
The category of the model version set.
created_by str
The OCID of the user who created the model version set.
id str
The provider-assigned unique ID for this managed resource.
state str
The state of the model version set.
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 that 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 that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
category String
The category of the model version set.
createdBy String
The OCID of the user who created the model version set.
id String
The provider-assigned unique ID for this managed resource.
state String
The state of the model version set.
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 that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
timeUpdated String
The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z

Look up Existing ModelVersionSet Resource

Get an existing ModelVersionSet 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?: ModelVersionSetState, opts?: CustomResourceOptions): ModelVersionSet
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        category: Optional[str] = None,
        compartment_id: Optional[str] = None,
        created_by: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        name: 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) -> ModelVersionSet
func GetModelVersionSet(ctx *Context, name string, id IDInput, state *ModelVersionSetState, opts ...ResourceOption) (*ModelVersionSet, error)
public static ModelVersionSet Get(string name, Input<string> id, ModelVersionSetState? state, CustomResourceOptions? opts = null)
public static ModelVersionSet get(String name, Output<String> id, ModelVersionSetState state, CustomResourceOptions options)
resources:  _:    type: oci:DataScience:ModelVersionSet    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Category string
The category of the model version set.
CompartmentId string
(Updatable) The OCID of the compartment to create the model version set in.
CreatedBy string
The OCID of the user who created the model version set.
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 set.
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"}
Name Changes to this property will trigger replacement. string
A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version set
ProjectId Changes to this property will trigger replacement. string

The OCID of the project to associate with the model version set.

** 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 model version set.
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 that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
TimeUpdated string
The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
Category string
The category of the model version set.
CompartmentId string
(Updatable) The OCID of the compartment to create the model version set in.
CreatedBy string
The OCID of the user who created the model version set.
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 set.
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"}
Name Changes to this property will trigger replacement. string
A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version set
ProjectId Changes to this property will trigger replacement. string

The OCID of the project to associate with the model version set.

** 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 model version set.
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 that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
TimeUpdated string
The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
category String
The category of the model version set.
compartmentId String
(Updatable) The OCID of the compartment to create the model version set in.
createdBy String
The OCID of the user who created the model version set.
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 set.
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"}
name Changes to this property will trigger replacement. String
A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version set
projectId Changes to this property will trigger replacement. String

The OCID of the project to associate with the model version set.

** 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 model version set.
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 that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
timeUpdated String
The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
category string
The category of the model version set.
compartmentId string
(Updatable) The OCID of the compartment to create the model version set in.
createdBy string
The OCID of the user who created the model version set.
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 set.
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"}
name Changes to this property will trigger replacement. string
A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version set
projectId Changes to this property will trigger replacement. string

The OCID of the project to associate with the model version set.

** 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 model version set.
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 that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
timeUpdated string
The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
category str
The category of the model version set.
compartment_id str
(Updatable) The OCID of the compartment to create the model version set in.
created_by str
The OCID of the user who created the model version set.
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 set.
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"}
name Changes to this property will trigger replacement. str
A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version set
project_id Changes to this property will trigger replacement. str

The OCID of the project to associate with the model version set.

** 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 model version set.
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 that 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 that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
category String
The category of the model version set.
compartmentId String
(Updatable) The OCID of the compartment to create the model version set in.
createdBy String
The OCID of the user who created the model version set.
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 set.
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"}
name Changes to this property will trigger replacement. String
A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: My model version set
projectId Changes to this property will trigger replacement. String

The OCID of the project to associate with the model version set.

** 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 model version set.
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 that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
timeUpdated String
The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z

Import

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

$ pulumi import oci:DataScience/modelVersionSet:ModelVersionSet test_model_version_set "id"
Copy

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.