Show / Hide Table of Contents

Class ObjectDetails

Details of the Objectstorage object

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

Properties

Checksum

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

Object content SHA256 Hash

ObjectBucket

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

Objectstorage bucket reference providing the original location of this object

Remarks

Required

ObjectName

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

Objectstorage object name reference providing the original location of this object

Remarks

Required

ObjectNamespace

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

Objectstorage namespace reference providing the original location of this object

Remarks

Required

ObjectUrl

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

Object storage URL for download

In this article
Back to top