Class BatchDeleteObjectsDetails
Batch delete request details.
Inherited Members
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