oci.DataScience.ModelProvenance
Explore with Pulumi AI
This resource provides the Model Provenance resource in Oracle Cloud Infrastructure Data Science service.
Creates provenance information for the specified model.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testModelProvenance = new oci.datascience.ModelProvenance("test_model_provenance", {
modelId: testModel.id,
gitBranch: modelProvenanceGitBranch,
gitCommit: modelProvenanceGitCommit,
repositoryUrl: modelProvenanceRepositoryUrl,
scriptDir: modelProvenanceScriptDir,
trainingId: testTraining.id,
trainingScript: modelProvenanceTrainingScript,
});
import pulumi
import pulumi_oci as oci
test_model_provenance = oci.data_science.ModelProvenance("test_model_provenance",
model_id=test_model["id"],
git_branch=model_provenance_git_branch,
git_commit=model_provenance_git_commit,
repository_url=model_provenance_repository_url,
script_dir=model_provenance_script_dir,
training_id=test_training["id"],
training_script=model_provenance_training_script)
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.NewModelProvenance(ctx, "test_model_provenance", &DataScience.ModelProvenanceArgs{
ModelId: pulumi.Any(testModel.Id),
GitBranch: pulumi.Any(modelProvenanceGitBranch),
GitCommit: pulumi.Any(modelProvenanceGitCommit),
RepositoryUrl: pulumi.Any(modelProvenanceRepositoryUrl),
ScriptDir: pulumi.Any(modelProvenanceScriptDir),
TrainingId: pulumi.Any(testTraining.Id),
TrainingScript: pulumi.Any(modelProvenanceTrainingScript),
})
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 testModelProvenance = new Oci.DataScience.ModelProvenance("test_model_provenance", new()
{
ModelId = testModel.Id,
GitBranch = modelProvenanceGitBranch,
GitCommit = modelProvenanceGitCommit,
RepositoryUrl = modelProvenanceRepositoryUrl,
ScriptDir = modelProvenanceScriptDir,
TrainingId = testTraining.Id,
TrainingScript = modelProvenanceTrainingScript,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataScience.ModelProvenance;
import com.pulumi.oci.DataScience.ModelProvenanceArgs;
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 testModelProvenance = new ModelProvenance("testModelProvenance", ModelProvenanceArgs.builder()
.modelId(testModel.id())
.gitBranch(modelProvenanceGitBranch)
.gitCommit(modelProvenanceGitCommit)
.repositoryUrl(modelProvenanceRepositoryUrl)
.scriptDir(modelProvenanceScriptDir)
.trainingId(testTraining.id())
.trainingScript(modelProvenanceTrainingScript)
.build());
}
}
resources:
testModelProvenance:
type: oci:DataScience:ModelProvenance
name: test_model_provenance
properties:
modelId: ${testModel.id}
gitBranch: ${modelProvenanceGitBranch}
gitCommit: ${modelProvenanceGitCommit}
repositoryUrl: ${modelProvenanceRepositoryUrl}
scriptDir: ${modelProvenanceScriptDir}
trainingId: ${testTraining.id}
trainingScript: ${modelProvenanceTrainingScript}
Create ModelProvenance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ModelProvenance(name: string, args: ModelProvenanceArgs, opts?: CustomResourceOptions);
@overload
def ModelProvenance(resource_name: str,
args: ModelProvenanceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ModelProvenance(resource_name: str,
opts: Optional[ResourceOptions] = None,
model_id: Optional[str] = None,
git_branch: Optional[str] = None,
git_commit: Optional[str] = None,
repository_url: Optional[str] = None,
script_dir: Optional[str] = None,
training_id: Optional[str] = None,
training_script: Optional[str] = None)
func NewModelProvenance(ctx *Context, name string, args ModelProvenanceArgs, opts ...ResourceOption) (*ModelProvenance, error)
public ModelProvenance(string name, ModelProvenanceArgs args, CustomResourceOptions? opts = null)
public ModelProvenance(String name, ModelProvenanceArgs args)
public ModelProvenance(String name, ModelProvenanceArgs args, CustomResourceOptions options)
type: oci:DataScience:ModelProvenance
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 ModelProvenanceArgs
- 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 ModelProvenanceArgs
- 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 ModelProvenanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ModelProvenanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ModelProvenanceArgs
- 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 modelProvenanceResource = new Oci.DataScience.ModelProvenance("modelProvenanceResource", new()
{
ModelId = "string",
GitBranch = "string",
GitCommit = "string",
RepositoryUrl = "string",
ScriptDir = "string",
TrainingId = "string",
TrainingScript = "string",
});
example, err := DataScience.NewModelProvenance(ctx, "modelProvenanceResource", &DataScience.ModelProvenanceArgs{
ModelId: pulumi.String("string"),
GitBranch: pulumi.String("string"),
GitCommit: pulumi.String("string"),
RepositoryUrl: pulumi.String("string"),
ScriptDir: pulumi.String("string"),
TrainingId: pulumi.String("string"),
TrainingScript: pulumi.String("string"),
})
var modelProvenanceResource = new ModelProvenance("modelProvenanceResource", ModelProvenanceArgs.builder()
.modelId("string")
.gitBranch("string")
.gitCommit("string")
.repositoryUrl("string")
.scriptDir("string")
.trainingId("string")
.trainingScript("string")
.build());
model_provenance_resource = oci.data_science.ModelProvenance("modelProvenanceResource",
model_id="string",
git_branch="string",
git_commit="string",
repository_url="string",
script_dir="string",
training_id="string",
training_script="string")
const modelProvenanceResource = new oci.datascience.ModelProvenance("modelProvenanceResource", {
modelId: "string",
gitBranch: "string",
gitCommit: "string",
repositoryUrl: "string",
scriptDir: "string",
trainingId: "string",
trainingScript: "string",
});
type: oci:DataScience:ModelProvenance
properties:
gitBranch: string
gitCommit: string
modelId: string
repositoryUrl: string
scriptDir: string
trainingId: string
trainingScript: string
ModelProvenance Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ModelProvenance resource accepts the following input properties:
- Model
Id string - The OCID of the model.
- Git
Branch string - (Updatable) For model reproducibility purposes. Branch of the git repository associated with model training.
- Git
Commit string - (Updatable) For model reproducibility purposes. Commit ID of the git repository associated with model training.
- Repository
Url string - (Updatable) For model reproducibility purposes. URL of the git repository associated with model training.
- Script
Dir string - (Updatable) For model reproducibility purposes. Path to model artifacts.
- Training
Id string - (Updatable) The OCID of a training session(Job or NotebookSession) in which the model was trained. It is used for model reproducibility purposes.
- Training
Script string (Updatable) For model reproducibility purposes. Path to the python script or notebook in which the model was trained."
** 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
- Model
Id string - The OCID of the model.
- Git
Branch string - (Updatable) For model reproducibility purposes. Branch of the git repository associated with model training.
- Git
Commit string - (Updatable) For model reproducibility purposes. Commit ID of the git repository associated with model training.
- Repository
Url string - (Updatable) For model reproducibility purposes. URL of the git repository associated with model training.
- Script
Dir string - (Updatable) For model reproducibility purposes. Path to model artifacts.
- Training
Id string - (Updatable) The OCID of a training session(Job or NotebookSession) in which the model was trained. It is used for model reproducibility purposes.
- Training
Script string (Updatable) For model reproducibility purposes. Path to the python script or notebook in which the model was trained."
** 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
- model
Id String - The OCID of the model.
- git
Branch String - (Updatable) For model reproducibility purposes. Branch of the git repository associated with model training.
- git
Commit String - (Updatable) For model reproducibility purposes. Commit ID of the git repository associated with model training.
- repository
Url String - (Updatable) For model reproducibility purposes. URL of the git repository associated with model training.
- script
Dir String - (Updatable) For model reproducibility purposes. Path to model artifacts.
- training
Id String - (Updatable) The OCID of a training session(Job or NotebookSession) in which the model was trained. It is used for model reproducibility purposes.
- training
Script String (Updatable) For model reproducibility purposes. Path to the python script or notebook in which the model was trained."
** 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
- model
Id string - The OCID of the model.
- git
Branch string - (Updatable) For model reproducibility purposes. Branch of the git repository associated with model training.
- git
Commit string - (Updatable) For model reproducibility purposes. Commit ID of the git repository associated with model training.
- repository
Url string - (Updatable) For model reproducibility purposes. URL of the git repository associated with model training.
- script
Dir string - (Updatable) For model reproducibility purposes. Path to model artifacts.
- training
Id string - (Updatable) The OCID of a training session(Job or NotebookSession) in which the model was trained. It is used for model reproducibility purposes.
- training
Script string (Updatable) For model reproducibility purposes. Path to the python script or notebook in which the model was trained."
** 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
- model_
id str - The OCID of the model.
- git_
branch str - (Updatable) For model reproducibility purposes. Branch of the git repository associated with model training.
- git_
commit str - (Updatable) For model reproducibility purposes. Commit ID of the git repository associated with model training.
- repository_
url str - (Updatable) For model reproducibility purposes. URL of the git repository associated with model training.
- script_
dir str - (Updatable) For model reproducibility purposes. Path to model artifacts.
- training_
id str - (Updatable) The OCID of a training session(Job or NotebookSession) in which the model was trained. It is used for model reproducibility purposes.
- training_
script str (Updatable) For model reproducibility purposes. Path to the python script or notebook in which the model was trained."
** 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
- model
Id String - The OCID of the model.
- git
Branch String - (Updatable) For model reproducibility purposes. Branch of the git repository associated with model training.
- git
Commit String - (Updatable) For model reproducibility purposes. Commit ID of the git repository associated with model training.
- repository
Url String - (Updatable) For model reproducibility purposes. URL of the git repository associated with model training.
- script
Dir String - (Updatable) For model reproducibility purposes. Path to model artifacts.
- training
Id String - (Updatable) The OCID of a training session(Job or NotebookSession) in which the model was trained. It is used for model reproducibility purposes.
- training
Script String (Updatable) For model reproducibility purposes. Path to the python script or notebook in which the model was trained."
** 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
Outputs
All input properties are implicitly available as output properties. Additionally, the ModelProvenance resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ModelProvenance Resource
Get an existing ModelProvenance 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?: ModelProvenanceState, opts?: CustomResourceOptions): ModelProvenance
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
git_branch: Optional[str] = None,
git_commit: Optional[str] = None,
model_id: Optional[str] = None,
repository_url: Optional[str] = None,
script_dir: Optional[str] = None,
training_id: Optional[str] = None,
training_script: Optional[str] = None) -> ModelProvenance
func GetModelProvenance(ctx *Context, name string, id IDInput, state *ModelProvenanceState, opts ...ResourceOption) (*ModelProvenance, error)
public static ModelProvenance Get(string name, Input<string> id, ModelProvenanceState? state, CustomResourceOptions? opts = null)
public static ModelProvenance get(String name, Output<String> id, ModelProvenanceState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Git
Branch string - (Updatable) For model reproducibility purposes. Branch of the git repository associated with model training.
- Git
Commit string - (Updatable) For model reproducibility purposes. Commit ID of the git repository associated with model training.
- Model
Id string - The OCID of the model.
- Repository
Url string - (Updatable) For model reproducibility purposes. URL of the git repository associated with model training.
- Script
Dir string - (Updatable) For model reproducibility purposes. Path to model artifacts.
- Training
Id string - (Updatable) The OCID of a training session(Job or NotebookSession) in which the model was trained. It is used for model reproducibility purposes.
- Training
Script string (Updatable) For model reproducibility purposes. Path to the python script or notebook in which the model was trained."
** 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
- Git
Branch string - (Updatable) For model reproducibility purposes. Branch of the git repository associated with model training.
- Git
Commit string - (Updatable) For model reproducibility purposes. Commit ID of the git repository associated with model training.
- Model
Id string - The OCID of the model.
- Repository
Url string - (Updatable) For model reproducibility purposes. URL of the git repository associated with model training.
- Script
Dir string - (Updatable) For model reproducibility purposes. Path to model artifacts.
- Training
Id string - (Updatable) The OCID of a training session(Job or NotebookSession) in which the model was trained. It is used for model reproducibility purposes.
- Training
Script string (Updatable) For model reproducibility purposes. Path to the python script or notebook in which the model was trained."
** 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
- git
Branch String - (Updatable) For model reproducibility purposes. Branch of the git repository associated with model training.
- git
Commit String - (Updatable) For model reproducibility purposes. Commit ID of the git repository associated with model training.
- model
Id String - The OCID of the model.
- repository
Url String - (Updatable) For model reproducibility purposes. URL of the git repository associated with model training.
- script
Dir String - (Updatable) For model reproducibility purposes. Path to model artifacts.
- training
Id String - (Updatable) The OCID of a training session(Job or NotebookSession) in which the model was trained. It is used for model reproducibility purposes.
- training
Script String (Updatable) For model reproducibility purposes. Path to the python script or notebook in which the model was trained."
** 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
- git
Branch string - (Updatable) For model reproducibility purposes. Branch of the git repository associated with model training.
- git
Commit string - (Updatable) For model reproducibility purposes. Commit ID of the git repository associated with model training.
- model
Id string - The OCID of the model.
- repository
Url string - (Updatable) For model reproducibility purposes. URL of the git repository associated with model training.
- script
Dir string - (Updatable) For model reproducibility purposes. Path to model artifacts.
- training
Id string - (Updatable) The OCID of a training session(Job or NotebookSession) in which the model was trained. It is used for model reproducibility purposes.
- training
Script string (Updatable) For model reproducibility purposes. Path to the python script or notebook in which the model was trained."
** 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
- git_
branch str - (Updatable) For model reproducibility purposes. Branch of the git repository associated with model training.
- git_
commit str - (Updatable) For model reproducibility purposes. Commit ID of the git repository associated with model training.
- model_
id str - The OCID of the model.
- repository_
url str - (Updatable) For model reproducibility purposes. URL of the git repository associated with model training.
- script_
dir str - (Updatable) For model reproducibility purposes. Path to model artifacts.
- training_
id str - (Updatable) The OCID of a training session(Job or NotebookSession) in which the model was trained. It is used for model reproducibility purposes.
- training_
script str (Updatable) For model reproducibility purposes. Path to the python script or notebook in which the model was trained."
** 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
- git
Branch String - (Updatable) For model reproducibility purposes. Branch of the git repository associated with model training.
- git
Commit String - (Updatable) For model reproducibility purposes. Commit ID of the git repository associated with model training.
- model
Id String - The OCID of the model.
- repository
Url String - (Updatable) For model reproducibility purposes. URL of the git repository associated with model training.
- script
Dir String - (Updatable) For model reproducibility purposes. Path to model artifacts.
- training
Id String - (Updatable) The OCID of a training session(Job or NotebookSession) in which the model was trained. It is used for model reproducibility purposes.
- training
Script String (Updatable) For model reproducibility purposes. Path to the python script or notebook in which the model was trained."
** 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
Import
ModelProvenances can be imported using the id
, e.g.
$ pulumi import oci:DataScience/modelProvenance:ModelProvenance test_model_provenance "models/{modelId}/provenance"
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.