Show / Hide Table of Contents

Class ObjectStorageUpdateDetail

Details of Object Storage instance to be updated.

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

Properties

AutoTiering

Declaration
[JsonProperty(PropertyName = "autoTiering")]
[JsonConverter(typeof(StringEnumConverter))]
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

Instance id of the existing Object Storage instance to be updated.

Remarks

Required

ObjectVersioning

Declaration
[JsonProperty(PropertyName = "objectVersioning")]
[JsonConverter(typeof(StringEnumConverter))]
public ObjectVersioning? ObjectVersioning { get; set; }
Property Value
Type Description
ObjectVersioning?

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

In this article
Back to top