oci.DataScience.ModelGroupVersionHistory
Explore with Pulumi AI
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:
- Compartment
Id string - (Updatable) The OCID of the compartment to create the model group version history in.
- Project
Id 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
- 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.
- Display
Name 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
- 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"}
- Latest
Model stringGroup Id - (Updatable) The OCID of the latest version of the model group to be associated.
- Compartment
Id string - (Updatable) The OCID of the compartment to create the model group version history in.
- Project
Id 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
- 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.
- Display
Name 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
- 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"}
- Latest
Model stringGroup Id - (Updatable) The OCID of the latest version of the model group to be associated.
- compartment
Id String - (Updatable) The OCID of the compartment to create the model group version history in.
- project
Id 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
- 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.
- display
Name 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
- 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"}
- latest
Model StringGroup Id - (Updatable) The OCID of the latest version of the model group to be associated.
- compartment
Id string - (Updatable) The OCID of the compartment to create the model group version history in.
- project
Id 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
- {[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.
- display
Name 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
- {[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"}
- latest
Model stringGroup Id - (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
- 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
- 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_ strgroup_ id - (Updatable) The OCID of the latest version of the model group to be associated.
- compartment
Id String - (Updatable) The OCID of the compartment to create the model group version history in.
- project
Id 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
- 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.
- display
Name 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
- 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"}
- latest
Model StringGroup Id - (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:
- Created
By string - The OCID of the user who created the modelGroupVersionHistory.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - Details about the lifecycle state of the model group version history.
- State string
- The state of the modelGroupVersionHistory.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- Time
Updated 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 string - The OCID of the user who created the modelGroupVersionHistory.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - Details about the lifecycle state of the model group version history.
- State string
- The state of the modelGroupVersionHistory.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- Time
Updated 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 String - The OCID of the user who created the modelGroupVersionHistory.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - Details about the lifecycle state of the model group version history.
- state String
- The state of the modelGroupVersionHistory.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- time
Updated 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 string - The OCID of the user who created the modelGroupVersionHistory.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - Details about the lifecycle state of the model group version history.
- state string
- The state of the modelGroupVersionHistory.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- time
Updated 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.
- 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
- created
By String - The OCID of the user who created the modelGroupVersionHistory.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - Details about the lifecycle state of the model group version history.
- state String
- The state of the modelGroupVersionHistory.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- time
Updated 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.
- Compartment
Id string - (Updatable) The OCID of the compartment to create the model group version history in.
- Created
By string - The OCID of the user who created the modelGroupVersionHistory.
- 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.
- Display
Name 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
- 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"}
- Latest
Model stringGroup Id - (Updatable) The OCID of the latest version of the model group to be associated.
- Lifecycle
Details string - Details about the lifecycle state of the model group version history.
- Project
Id 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.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- Time
Updated 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 string - (Updatable) The OCID of the compartment to create the model group version history in.
- Created
By string - The OCID of the user who created the modelGroupVersionHistory.
- 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.
- Display
Name 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
- 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"}
- Latest
Model stringGroup Id - (Updatable) The OCID of the latest version of the model group to be associated.
- Lifecycle
Details string - Details about the lifecycle state of the model group version history.
- Project
Id 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.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- Time
Updated 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 String - (Updatable) The OCID of the compartment to create the model group version history in.
- created
By String - The OCID of the user who created the modelGroupVersionHistory.
- 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.
- display
Name 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
- 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"}
- latest
Model StringGroup Id - (Updatable) The OCID of the latest version of the model group to be associated.
- lifecycle
Details String - Details about the lifecycle state of the model group version history.
- project
Id 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.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- time
Updated 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 string - (Updatable) The OCID of the compartment to create the model group version history in.
- created
By string - The OCID of the user who created the modelGroupVersionHistory.
- {[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.
- display
Name 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
- {[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"}
- latest
Model stringGroup Id - (Updatable) The OCID of the latest version of the model group to be associated.
- lifecycle
Details string - Details about the lifecycle state of the model group version history.
- project
Id 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.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- time
Updated 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.
- 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
- 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_ strgroup_ id - (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.
- 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
- compartment
Id String - (Updatable) The OCID of the compartment to create the model group version history in.
- created
By String - The OCID of the user who created the modelGroupVersionHistory.
- 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.
- display
Name 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
- 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"}
- latest
Model StringGroup Id - (Updatable) The OCID of the latest version of the model group to be associated.
- lifecycle
Details String - Details about the lifecycle state of the model group version history.
- project
Id 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.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
- time
Updated 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.