Show / Hide Table of Contents

Class ObjectStorageDetail

Object Storage Details required to provision buckets.

Inheritance
object
ObjectStorageDetail
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DifService.Models
Assembly: OCI.DotNetSDK.Dif.dll
Syntax
public class ObjectStorageDetail

Properties

AutoTiering

Declaration
[JsonProperty(PropertyName = "autoTiering")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AutoTiering? AutoTiering { get; set; }
Property Value
Type Description
AutoTiering?

It sets the auto-tiering status on the bucket.Allowed values are "DISABLED" / "INFREQUENTACCESS"

InstanceId

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

Id for Object Storage instance to be provisioned.

Remarks

Required

ObjectVersioning

Declaration
[Required(ErrorMessage = "ObjectVersioning is required.")]
[JsonProperty(PropertyName = "objectVersioning")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ObjectVersioning? ObjectVersioning { get; set; }
Property Value
Type Description
ObjectVersioning?

Mentions whether the object versioning to be enabled or not,Allowed values are "ENABLED" / "DISABLED"/"SUSPENDED"

Remarks

Required

StorageTier

Declaration
[Required(ErrorMessage = "StorageTier is required.")]
[JsonProperty(PropertyName = "storageTier")]
[JsonConverter(typeof(ResponseEnumConverter))]
public StorageTier? StorageTier { get; set; }
Property Value
Type Description
StorageTier?

Mentions which storage tier to use for the bucket,Allowed values are "STANDARD" / "ARCHIVE"

Remarks

Required

In this article
Back to top