Show / Hide Table of Contents

Class ObjectStorageConfig

OCI Object storage configuration details.

Inheritance
object
ObjectStorageConfig
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 ObjectStorageConfig

Properties

BucketName

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

The Object Storage bucket name.

Remarks

Required

Namespace

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

The Object Storage namespace.

Remarks

Required

PrefixList

Declaration
[JsonProperty(PropertyName = "prefixList")]
public List<string> PrefixList { get; set; }
Property Value
Type Description
List<string>

Optional object prefix

In this article
Back to top