Show / Hide Table of Contents

Class ObjectStorageObject

Details about the object storage location.

Inheritance
object
ModelDataSource
ObjectStorageObject
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiService.Models
Assembly: OCI.DotNetSDK.Generativeai.dll
Syntax
public class ObjectStorageObject : ModelDataSource

Properties

BucketName

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

The name of the Object Storage bucket.

Remarks

Required

NamespaceName

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

The namespace of the Object Storage where the files are stored.

Remarks

Required

PrefixName

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

The prefix path (or folder) within the bucket where files are located.

Remarks

Required

Region

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

The full canonical Oracle Cloud region identifier (e.g., "us-ashburn-1") where the object storage bucket containing the files resides.

In this article
Back to top