Show / Hide Table of Contents

Class OSSModelArtifactReferenceDetails

Reference to the OSS where model artifact is stored

Inheritance
object
ModelArtifactReferenceDetails
OSSModelArtifactReferenceDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatascienceService.Models
Assembly: OCI.DotNetSDK.Datascience.dll
Syntax
public class OSSModelArtifactReferenceDetails : ModelArtifactReferenceDetails

Properties

BucketName

Declaration
[Required(ErrorMessage = "BucketName is required.")]
[JsonProperty(PropertyName = "bucketName")]
public string BucketName { get; set; }
Property Value
Type Description
string

The bucket name of the model artifact reference in OSS.

Remarks

Required

Namespace

Declaration
[Required(ErrorMessage = "Namespace is required.")]
[JsonProperty(PropertyName = "namespace")]
public string Namespace { get; set; }
Property Value
Type Description
string

The namespace of the model artifact reference in OSS.

Remarks

Required

Prefix

Declaration
[JsonProperty(PropertyName = "prefix")]
public string Prefix { get; set; }
Property Value
Type Description
string

The prefix of the model artifact reference in OSS.

In this article
Back to top