Show / Hide Table of Contents

Class FailedObjectResult

Failed object details.

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

Properties

ErrorMessage

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

Detailed error message on why the delete/update was failed.

Remarks

Required

ObjectName

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

The name of the object. Example: test/object1.log

Remarks

Required

StatusCode

Declaration
[Required(ErrorMessage = "StatusCode is required.")]
[JsonProperty(PropertyName = "statusCode")]
public int? StatusCode { get; set; }
Property Value
Type Description
int?

HTTP status code for the failure. Example: 409

Remarks

Required

In this article
Back to top