oci.DataScience.ModelDefinedMetadataArtifact
Explore with Pulumi AI
This resource provides the Model Defined Metadata Artifact resource in Oracle Cloud Infrastructure Data Science service.
Creates model defined metadata artifact for specified model.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testModelDefinedMetadataArtifact = new oci.datascience.ModelDefinedMetadataArtifact("test_model_defined_metadata_artifact", {
modelDefinedMetadatumArtifact: modelDefinedMetadataArtifactModelDefinedMetadatumArtifact,
contentLength: modelDefinedMetadataArtifactContentLength,
metadatumKeyName: testKey.name,
modelId: testModel.id,
contentDisposition: modelDefinedMetadataArtifactContentDisposition,
});
import pulumi
import pulumi_oci as oci
test_model_defined_metadata_artifact = oci.data_science.ModelDefinedMetadataArtifact("test_model_defined_metadata_artifact",
model_defined_metadatum_artifact=model_defined_metadata_artifact_model_defined_metadatum_artifact,
content_length=model_defined_metadata_artifact_content_length,
metadatum_key_name=test_key["name"],
model_id=test_model["id"],
content_disposition=model_defined_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.NewModelDefinedMetadataArtifact(ctx, "test_model_defined_metadata_artifact", &datascience.ModelDefinedMetadataArtifactArgs{
ModelDefinedMetadatumArtifact: pulumi.Any(modelDefinedMetadataArtifactModelDefinedMetadatumArtifact),
ContentLength: pulumi.Any(modelDefinedMetadataArtifactContentLength),
MetadatumKeyName: pulumi.Any(testKey.Name),
ModelId: pulumi.Any(testModel.Id),
ContentDisposition: pulumi.Any(modelDefinedMetadataArtifactContentDisposition),
})
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 testModelDefinedMetadataArtifact = new Oci.DataScience.ModelDefinedMetadataArtifact("test_model_defined_metadata_artifact", new()
{
ModelDefinedMetadatumArtifact = modelDefinedMetadataArtifactModelDefinedMetadatumArtifact,
ContentLength = modelDefinedMetadataArtifactContentLength,
MetadatumKeyName = testKey.Name,
ModelId = testModel.Id,
ContentDisposition = modelDefinedMetadataArtifactContentDisposition,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataScience.ModelDefinedMetadataArtifact;
import com.pulumi.oci.DataScience.ModelDefinedMetadataArtifactArgs;
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 testModelDefinedMetadataArtifact = new ModelDefinedMetadataArtifact("testModelDefinedMetadataArtifact", ModelDefinedMetadataArtifactArgs.builder()
.modelDefinedMetadatumArtifact(modelDefinedMetadataArtifactModelDefinedMetadatumArtifact)
.contentLength(modelDefinedMetadataArtifactContentLength)
.metadatumKeyName(testKey.name())
.modelId(testModel.id())
.contentDisposition(modelDefinedMetadataArtifactContentDisposition)
.build());
}
}
resources:
testModelDefinedMetadataArtifact:
type: oci:DataScience:ModelDefinedMetadataArtifact
name: test_model_defined_metadata_artifact
properties:
modelDefinedMetadatumArtifact: ${modelDefinedMetadataArtifactModelDefinedMetadatumArtifact}
contentLength: ${modelDefinedMetadataArtifactContentLength}
metadatumKeyName: ${testKey.name}
modelId: ${testModel.id}
contentDisposition: ${modelDefinedMetadataArtifactContentDisposition}
Create ModelDefinedMetadataArtifact Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ModelDefinedMetadataArtifact(name: string, args: ModelDefinedMetadataArtifactArgs, opts?: CustomResourceOptions);
@overload
def ModelDefinedMetadataArtifact(resource_name: str,
args: ModelDefinedMetadataArtifactArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ModelDefinedMetadataArtifact(resource_name: str,
opts: Optional[ResourceOptions] = None,
content_length: Optional[str] = None,
metadatum_key_name: Optional[str] = None,
model_defined_metadatum_artifact: Optional[str] = None,
model_id: Optional[str] = None,
content_disposition: Optional[str] = None)
func NewModelDefinedMetadataArtifact(ctx *Context, name string, args ModelDefinedMetadataArtifactArgs, opts ...ResourceOption) (*ModelDefinedMetadataArtifact, error)
public ModelDefinedMetadataArtifact(string name, ModelDefinedMetadataArtifactArgs args, CustomResourceOptions? opts = null)
public ModelDefinedMetadataArtifact(String name, ModelDefinedMetadataArtifactArgs args)
public ModelDefinedMetadataArtifact(String name, ModelDefinedMetadataArtifactArgs args, CustomResourceOptions options)
type: oci:DataScience:ModelDefinedMetadataArtifact
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 ModelDefinedMetadataArtifactArgs
- 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 ModelDefinedMetadataArtifactArgs
- 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 ModelDefinedMetadataArtifactArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ModelDefinedMetadataArtifactArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ModelDefinedMetadataArtifactArgs
- 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 modelDefinedMetadataArtifactResource = new Oci.DataScience.ModelDefinedMetadataArtifact("modelDefinedMetadataArtifactResource", new()
{
ContentLength = "string",
MetadatumKeyName = "string",
ModelDefinedMetadatumArtifact = "string",
ModelId = "string",
ContentDisposition = "string",
});
example, err := DataScience.NewModelDefinedMetadataArtifact(ctx, "modelDefinedMetadataArtifactResource", &DataScience.ModelDefinedMetadataArtifactArgs{
ContentLength: pulumi.String("string"),
MetadatumKeyName: pulumi.String("string"),
ModelDefinedMetadatumArtifact: pulumi.String("string"),
ModelId: pulumi.String("string"),
ContentDisposition: pulumi.String("string"),
})
var modelDefinedMetadataArtifactResource = new ModelDefinedMetadataArtifact("modelDefinedMetadataArtifactResource", ModelDefinedMetadataArtifactArgs.builder()
.contentLength("string")
.metadatumKeyName("string")
.modelDefinedMetadatumArtifact("string")
.modelId("string")
.contentDisposition("string")
.build());
model_defined_metadata_artifact_resource = oci.data_science.ModelDefinedMetadataArtifact("modelDefinedMetadataArtifactResource",
content_length="string",
metadatum_key_name="string",
model_defined_metadatum_artifact="string",
model_id="string",
content_disposition="string")
const modelDefinedMetadataArtifactResource = new oci.datascience.ModelDefinedMetadataArtifact("modelDefinedMetadataArtifactResource", {
contentLength: "string",
metadatumKeyName: "string",
modelDefinedMetadatumArtifact: "string",
modelId: "string",
contentDisposition: "string",
});
type: oci:DataScience:ModelDefinedMetadataArtifact
properties:
contentDisposition: string
contentLength: string
metadatumKeyName: string
modelDefinedMetadatumArtifact: string
modelId: string
ModelDefinedMetadataArtifact 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 ModelDefinedMetadataArtifact resource accepts the following input properties:
- Content
Length string - (Updatable) The content length of the body.
- Metadatum
Key stringName - The name of the model metadatum in the metadata.
- Model
Defined stringMetadatum Artifact - (Updatable) The model defined metadata artifact to upload.
- Model
Id 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 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 string - (Updatable) The content length of the body.
- Metadatum
Key stringName - The name of the model metadatum in the metadata.
- Model
Defined stringMetadatum Artifact - (Updatable) The model defined metadata artifact to upload.
- Model
Id 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 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 String - (Updatable) The content length of the body.
- metadatum
Key StringName - The name of the model metadatum in the metadata.
- model
Defined StringMetadatum Artifact - (Updatable) The model defined metadata artifact to upload.
- model
Id 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 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 string - (Updatable) The content length of the body.
- metadatum
Key stringName - The name of the model metadatum in the metadata.
- model
Defined stringMetadatum Artifact - (Updatable) The model defined metadata artifact to upload.
- model
Id 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 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_ strname - The name of the model metadatum in the metadata.
- model_
defined_ strmetadatum_ artifact - (Updatable) The model defined 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"}
- content
Length String - (Updatable) The content length of the body.
- metadatum
Key StringName - The name of the model metadatum in the metadata.
- model
Defined StringMetadatum Artifact - (Updatable) The model defined metadata artifact to upload.
- model
Id 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 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 ModelDefinedMetadataArtifact 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 ModelDefinedMetadataArtifact Resource
Get an existing ModelDefinedMetadataArtifact 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?: ModelDefinedMetadataArtifactState, opts?: CustomResourceOptions): ModelDefinedMetadataArtifact
@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_defined_metadatum_artifact: Optional[str] = None,
model_id: Optional[str] = None) -> ModelDefinedMetadataArtifact
func GetModelDefinedMetadataArtifact(ctx *Context, name string, id IDInput, state *ModelDefinedMetadataArtifactState, opts ...ResourceOption) (*ModelDefinedMetadataArtifact, error)
public static ModelDefinedMetadataArtifact Get(string name, Input<string> id, ModelDefinedMetadataArtifactState? state, CustomResourceOptions? opts = null)
public static ModelDefinedMetadataArtifact get(String name, Output<String> id, ModelDefinedMetadataArtifactState state, CustomResourceOptions options)
resources: _: type: oci:DataScience:ModelDefinedMetadataArtifact 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.
- Content
Disposition 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 string - (Updatable) The content length of the body.
- Metadatum
Key stringName - The name of the model metadatum in the metadata.
- Model
Defined stringMetadatum Artifact - (Updatable) The model defined metadata artifact to upload.
- Model
Id 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 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 string - (Updatable) The content length of the body.
- Metadatum
Key stringName - The name of the model metadatum in the metadata.
- Model
Defined stringMetadatum Artifact - (Updatable) The model defined metadata artifact to upload.
- Model
Id 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 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 String - (Updatable) The content length of the body.
- metadatum
Key StringName - The name of the model metadatum in the metadata.
- model
Defined StringMetadatum Artifact - (Updatable) The model defined metadata artifact to upload.
- model
Id 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 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 string - (Updatable) The content length of the body.
- metadatum
Key stringName - The name of the model metadatum in the metadata.
- model
Defined stringMetadatum Artifact - (Updatable) The model defined metadata artifact to upload.
- model
Id 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_ strname - The name of the model metadatum in the metadata.
- model_
defined_ strmetadatum_ artifact - (Updatable) The model defined 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 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 String - (Updatable) The content length of the body.
- metadatum
Key StringName - The name of the model metadatum in the metadata.
- model
Defined StringMetadatum Artifact - (Updatable) The model defined metadata artifact to upload.
- model
Id 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
ModelDefinedMetadataArtifacts can be imported using the id
, e.g.
$ pulumi import oci:DataScience/modelDefinedMetadataArtifact:ModelDefinedMetadataArtifact test_model_defined_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.