1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataScience
  5. ModelCustomMetadataArtifact
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.DataScience.ModelCustomMetadataArtifact

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

    This resource provides the Model Custom Metadata Artifact resource in Oracle Cloud Infrastructure Data Science service.

    Creates model custom metadata artifact for specified model.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testModelCustomMetadataArtifact = new oci.datascience.ModelCustomMetadataArtifact("test_model_custom_metadata_artifact", {
        modelCustomMetadatumArtifact: modelCustomMetadataArtifactModelCustomMetadatumArtifact,
        contentLength: modelCustomMetadataArtifactContentLength,
        metadatumKeyName: testKey.name,
        modelId: testModel.id,
        contentDisposition: modelCustomMetadataArtifactContentDisposition,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_model_custom_metadata_artifact = oci.data_science.ModelCustomMetadataArtifact("test_model_custom_metadata_artifact",
        model_custom_metadatum_artifact=model_custom_metadata_artifact_model_custom_metadatum_artifact,
        content_length=model_custom_metadata_artifact_content_length,
        metadatum_key_name=test_key["name"],
        model_id=test_model["id"],
        content_disposition=model_custom_metadata_artifact_content_disposition)
    
    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.NewModelCustomMetadataArtifact(ctx, "test_model_custom_metadata_artifact", &datascience.ModelCustomMetadataArtifactArgs{
    			ModelCustomMetadatumArtifact: pulumi.Any(modelCustomMetadataArtifactModelCustomMetadatumArtifact),
    			ContentLength:                pulumi.Any(modelCustomMetadataArtifactContentLength),
    			MetadatumKeyName:             pulumi.Any(testKey.Name),
    			ModelId:                      pulumi.Any(testModel.Id),
    			ContentDisposition:           pulumi.Any(modelCustomMetadataArtifactContentDisposition),
    		})
    		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 testModelCustomMetadataArtifact = new Oci.DataScience.ModelCustomMetadataArtifact("test_model_custom_metadata_artifact", new()
        {
            ModelCustomMetadatumArtifact = modelCustomMetadataArtifactModelCustomMetadatumArtifact,
            ContentLength = modelCustomMetadataArtifactContentLength,
            MetadatumKeyName = testKey.Name,
            ModelId = testModel.Id,
            ContentDisposition = modelCustomMetadataArtifactContentDisposition,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DataScience.ModelCustomMetadataArtifact;
    import com.pulumi.oci.DataScience.ModelCustomMetadataArtifactArgs;
    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 testModelCustomMetadataArtifact = new ModelCustomMetadataArtifact("testModelCustomMetadataArtifact", ModelCustomMetadataArtifactArgs.builder()
                .modelCustomMetadatumArtifact(modelCustomMetadataArtifactModelCustomMetadatumArtifact)
                .contentLength(modelCustomMetadataArtifactContentLength)
                .metadatumKeyName(testKey.name())
                .modelId(testModel.id())
                .contentDisposition(modelCustomMetadataArtifactContentDisposition)
                .build());
    
        }
    }
    
    resources:
      testModelCustomMetadataArtifact:
        type: oci:DataScience:ModelCustomMetadataArtifact
        name: test_model_custom_metadata_artifact
        properties:
          modelCustomMetadatumArtifact: ${modelCustomMetadataArtifactModelCustomMetadatumArtifact}
          contentLength: ${modelCustomMetadataArtifactContentLength}
          metadatumKeyName: ${testKey.name}
          modelId: ${testModel.id}
          contentDisposition: ${modelCustomMetadataArtifactContentDisposition}
    

    Create ModelCustomMetadataArtifact Resource

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

    Constructor syntax

    new ModelCustomMetadataArtifact(name: string, args: ModelCustomMetadataArtifactArgs, opts?: CustomResourceOptions);
    @overload
    def ModelCustomMetadataArtifact(resource_name: str,
                                    args: ModelCustomMetadataArtifactArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def ModelCustomMetadataArtifact(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    content_length: Optional[str] = None,
                                    metadatum_key_name: Optional[str] = None,
                                    model_custom_metadatum_artifact: Optional[str] = None,
                                    model_id: Optional[str] = None,
                                    content_disposition: Optional[str] = None)
    func NewModelCustomMetadataArtifact(ctx *Context, name string, args ModelCustomMetadataArtifactArgs, opts ...ResourceOption) (*ModelCustomMetadataArtifact, error)
    public ModelCustomMetadataArtifact(string name, ModelCustomMetadataArtifactArgs args, CustomResourceOptions? opts = null)
    public ModelCustomMetadataArtifact(String name, ModelCustomMetadataArtifactArgs args)
    public ModelCustomMetadataArtifact(String name, ModelCustomMetadataArtifactArgs args, CustomResourceOptions options)
    
    type: oci:DataScience:ModelCustomMetadataArtifact
    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 ModelCustomMetadataArtifactArgs
    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 ModelCustomMetadataArtifactArgs
    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 ModelCustomMetadataArtifactArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ModelCustomMetadataArtifactArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ModelCustomMetadataArtifactArgs
    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 modelCustomMetadataArtifactResource = new Oci.DataScience.ModelCustomMetadataArtifact("modelCustomMetadataArtifactResource", new()
    {
        ContentLength = "string",
        MetadatumKeyName = "string",
        ModelCustomMetadatumArtifact = "string",
        ModelId = "string",
        ContentDisposition = "string",
    });
    
    example, err := DataScience.NewModelCustomMetadataArtifact(ctx, "modelCustomMetadataArtifactResource", &DataScience.ModelCustomMetadataArtifactArgs{
    	ContentLength:                pulumi.String("string"),
    	MetadatumKeyName:             pulumi.String("string"),
    	ModelCustomMetadatumArtifact: pulumi.String("string"),
    	ModelId:                      pulumi.String("string"),
    	ContentDisposition:           pulumi.String("string"),
    })
    
    var modelCustomMetadataArtifactResource = new ModelCustomMetadataArtifact("modelCustomMetadataArtifactResource", ModelCustomMetadataArtifactArgs.builder()
        .contentLength("string")
        .metadatumKeyName("string")
        .modelCustomMetadatumArtifact("string")
        .modelId("string")
        .contentDisposition("string")
        .build());
    
    model_custom_metadata_artifact_resource = oci.data_science.ModelCustomMetadataArtifact("modelCustomMetadataArtifactResource",
        content_length="string",
        metadatum_key_name="string",
        model_custom_metadatum_artifact="string",
        model_id="string",
        content_disposition="string")
    
    const modelCustomMetadataArtifactResource = new oci.datascience.ModelCustomMetadataArtifact("modelCustomMetadataArtifactResource", {
        contentLength: "string",
        metadatumKeyName: "string",
        modelCustomMetadatumArtifact: "string",
        modelId: "string",
        contentDisposition: "string",
    });
    
    type: oci:DataScience:ModelCustomMetadataArtifact
    properties:
        contentDisposition: string
        contentLength: string
        metadatumKeyName: string
        modelCustomMetadatumArtifact: string
        modelId: string
    

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

    ContentLength string
    (Updatable) The content length of the body.
    MetadatumKeyName string
    The name of the model metadatum in the metadata.
    ModelCustomMetadatumArtifact string
    (Updatable) The model custom metadata artifact to upload.
    ModelId string

    The OCID of the model.

    ** 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

    ContentDisposition string
    (Updatable) This header allows you to specify a filename during upload. This file name is used to dispose of the file contents while downloading the file. If this optional field is not populated in the request, then the OCID of the model is used for the file name when downloading. Example: {"Content-Disposition": "attachment" "filename"="model.tar.gz" "Content-Length": "2347" "Content-Type": "application/gzip"}
    ContentLength string
    (Updatable) The content length of the body.
    MetadatumKeyName string
    The name of the model metadatum in the metadata.
    ModelCustomMetadatumArtifact string
    (Updatable) The model custom metadata artifact to upload.
    ModelId string

    The OCID of the model.

    ** 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

    ContentDisposition string
    (Updatable) This header allows you to specify a filename during upload. This file name is used to dispose of the file contents while downloading the file. If this optional field is not populated in the request, then the OCID of the model is used for the file name when downloading. Example: {"Content-Disposition": "attachment" "filename"="model.tar.gz" "Content-Length": "2347" "Content-Type": "application/gzip"}
    contentLength String
    (Updatable) The content length of the body.
    metadatumKeyName String
    The name of the model metadatum in the metadata.
    modelCustomMetadatumArtifact String
    (Updatable) The model custom metadata artifact to upload.
    modelId String

    The OCID of the model.

    ** 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

    contentDisposition String
    (Updatable) This header allows you to specify a filename during upload. This file name is used to dispose of the file contents while downloading the file. If this optional field is not populated in the request, then the OCID of the model is used for the file name when downloading. Example: {"Content-Disposition": "attachment" "filename"="model.tar.gz" "Content-Length": "2347" "Content-Type": "application/gzip"}
    contentLength string
    (Updatable) The content length of the body.
    metadatumKeyName string
    The name of the model metadatum in the metadata.
    modelCustomMetadatumArtifact string
    (Updatable) The model custom metadata artifact to upload.
    modelId string

    The OCID of the model.

    ** 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

    contentDisposition string
    (Updatable) This header allows you to specify a filename during upload. This file name is used to dispose of the file contents while downloading the file. If this optional field is not populated in the request, then the OCID of the model is used for the file name when downloading. Example: {"Content-Disposition": "attachment" "filename"="model.tar.gz" "Content-Length": "2347" "Content-Type": "application/gzip"}
    content_length str
    (Updatable) The content length of the body.
    metadatum_key_name str
    The name of the model metadatum in the metadata.
    model_custom_metadatum_artifact str
    (Updatable) The model custom metadata artifact to upload.
    model_id str

    The OCID of the model.

    ** 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

    content_disposition str
    (Updatable) This header allows you to specify a filename during upload. This file name is used to dispose of the file contents while downloading the file. If this optional field is not populated in the request, then the OCID of the model is used for the file name when downloading. Example: {"Content-Disposition": "attachment" "filename"="model.tar.gz" "Content-Length": "2347" "Content-Type": "application/gzip"}
    contentLength String
    (Updatable) The content length of the body.
    metadatumKeyName String
    The name of the model metadatum in the metadata.
    modelCustomMetadatumArtifact String
    (Updatable) The model custom metadata artifact to upload.
    modelId String

    The OCID of the model.

    ** 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

    contentDisposition String
    (Updatable) This header allows you to specify a filename during upload. This file name is used to dispose of the file contents while downloading the file. If this optional field is not populated in the request, then the OCID of the model is used for the file name when downloading. Example: {"Content-Disposition": "attachment" "filename"="model.tar.gz" "Content-Length": "2347" "Content-Type": "application/gzip"}

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ModelCustomMetadataArtifact 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 ModelCustomMetadataArtifact Resource

    Get an existing ModelCustomMetadataArtifact 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?: ModelCustomMetadataArtifactState, opts?: CustomResourceOptions): ModelCustomMetadataArtifact
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            content_disposition: Optional[str] = None,
            content_length: Optional[str] = None,
            metadatum_key_name: Optional[str] = None,
            model_custom_metadatum_artifact: Optional[str] = None,
            model_id: Optional[str] = None) -> ModelCustomMetadataArtifact
    func GetModelCustomMetadataArtifact(ctx *Context, name string, id IDInput, state *ModelCustomMetadataArtifactState, opts ...ResourceOption) (*ModelCustomMetadataArtifact, error)
    public static ModelCustomMetadataArtifact Get(string name, Input<string> id, ModelCustomMetadataArtifactState? state, CustomResourceOptions? opts = null)
    public static ModelCustomMetadataArtifact get(String name, Output<String> id, ModelCustomMetadataArtifactState state, CustomResourceOptions options)
    resources:  _:    type: oci:DataScience:ModelCustomMetadataArtifact    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ContentDisposition string
    (Updatable) This header allows you to specify a filename during upload. This file name is used to dispose of the file contents while downloading the file. If this optional field is not populated in the request, then the OCID of the model is used for the file name when downloading. Example: {"Content-Disposition": "attachment" "filename"="model.tar.gz" "Content-Length": "2347" "Content-Type": "application/gzip"}
    ContentLength string
    (Updatable) The content length of the body.
    MetadatumKeyName string
    The name of the model metadatum in the metadata.
    ModelCustomMetadatumArtifact string
    (Updatable) The model custom metadata artifact to upload.
    ModelId string

    The OCID of the model.

    ** 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

    ContentDisposition string
    (Updatable) This header allows you to specify a filename during upload. This file name is used to dispose of the file contents while downloading the file. If this optional field is not populated in the request, then the OCID of the model is used for the file name when downloading. Example: {"Content-Disposition": "attachment" "filename"="model.tar.gz" "Content-Length": "2347" "Content-Type": "application/gzip"}
    ContentLength string
    (Updatable) The content length of the body.
    MetadatumKeyName string
    The name of the model metadatum in the metadata.
    ModelCustomMetadatumArtifact string
    (Updatable) The model custom metadata artifact to upload.
    ModelId string

    The OCID of the model.

    ** 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

    contentDisposition String
    (Updatable) This header allows you to specify a filename during upload. This file name is used to dispose of the file contents while downloading the file. If this optional field is not populated in the request, then the OCID of the model is used for the file name when downloading. Example: {"Content-Disposition": "attachment" "filename"="model.tar.gz" "Content-Length": "2347" "Content-Type": "application/gzip"}
    contentLength String
    (Updatable) The content length of the body.
    metadatumKeyName String
    The name of the model metadatum in the metadata.
    modelCustomMetadatumArtifact String
    (Updatable) The model custom metadata artifact to upload.
    modelId String

    The OCID of the model.

    ** 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

    contentDisposition string
    (Updatable) This header allows you to specify a filename during upload. This file name is used to dispose of the file contents while downloading the file. If this optional field is not populated in the request, then the OCID of the model is used for the file name when downloading. Example: {"Content-Disposition": "attachment" "filename"="model.tar.gz" "Content-Length": "2347" "Content-Type": "application/gzip"}
    contentLength string
    (Updatable) The content length of the body.
    metadatumKeyName string
    The name of the model metadatum in the metadata.
    modelCustomMetadatumArtifact string
    (Updatable) The model custom metadata artifact to upload.
    modelId string

    The OCID of the model.

    ** 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

    content_disposition str
    (Updatable) This header allows you to specify a filename during upload. This file name is used to dispose of the file contents while downloading the file. If this optional field is not populated in the request, then the OCID of the model is used for the file name when downloading. Example: {"Content-Disposition": "attachment" "filename"="model.tar.gz" "Content-Length": "2347" "Content-Type": "application/gzip"}
    content_length str
    (Updatable) The content length of the body.
    metadatum_key_name str
    The name of the model metadatum in the metadata.
    model_custom_metadatum_artifact str
    (Updatable) The model custom metadata artifact to upload.
    model_id str

    The OCID of the model.

    ** 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

    contentDisposition String
    (Updatable) This header allows you to specify a filename during upload. This file name is used to dispose of the file contents while downloading the file. If this optional field is not populated in the request, then the OCID of the model is used for the file name when downloading. Example: {"Content-Disposition": "attachment" "filename"="model.tar.gz" "Content-Length": "2347" "Content-Type": "application/gzip"}
    contentLength String
    (Updatable) The content length of the body.
    metadatumKeyName String
    The name of the model metadatum in the metadata.
    modelCustomMetadatumArtifact String
    (Updatable) The model custom metadata artifact to upload.
    modelId String

    The OCID of the model.

    ** 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

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

    $ pulumi import oci:DataScience/modelCustomMetadataArtifact:ModelCustomMetadataArtifact test_model_custom_metadata_artifact "id"
    

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

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi