Show / Hide Table of Contents

Class ObjectStorageMountConfigurationDetails

The Object Storage Configuration Details.

Inheritance
object
StorageMountConfigurationDetails
ObjectStorageMountConfigurationDetails
Inherited Members
StorageMountConfigurationDetails.DestinationDirectoryName
StorageMountConfigurationDetails.DestinationPath
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 ObjectStorageMountConfigurationDetails : StorageMountConfigurationDetails

Properties

Bucket

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

The object storage bucket

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

Prefix

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

Prefix in the bucket to mount

In this article
Back to top