Show / Hide Table of Contents

Class BatchDeleteObjectsDetails

Batch delete request details.

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

Properties

IsSkipDeletedResult

Declaration
[JsonProperty(PropertyName = "isSkipDeletedResult")]
public bool? IsSkipDeletedResult { get; set; }
Property Value
Type Description
bool?

Specifies whether to skip the details of successfully deleted objects in the response. If specified true then only the details of failed deletes will be available in the response. Defaults to false.

Objects

Declaration
[Required(ErrorMessage = "Objects is required.")]
[JsonProperty(PropertyName = "objects")]
public List<BatchDeleteObjectIdentifier> Objects { get; set; }
Property Value
Type Description
List<BatchDeleteObjectIdentifier>

The list of the objects to delete.

Remarks

Required

In this article
Back to top