BatchDeleteObjectsResult¶
-
class
oci.object_storage.models.BatchDeleteObjectsResult(**kwargs)¶ Bases:
objectResult of a batch delete operation.
Methods
__init__(**kwargs)Initializes a new BatchDeleteObjectsResult object with values from keyword arguments. Attributes
deleted[Required] Gets the deleted of this BatchDeleteObjectsResult. failedGets the failed of this BatchDeleteObjectsResult. -
__init__(**kwargs)¶ Initializes a new BatchDeleteObjectsResult object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - deleted (list[oci.object_storage.models.DeletedObjectResult]) – The value to assign to the deleted property of this BatchDeleteObjectsResult.
- failed (list[oci.object_storage.models.FailedObjectResult]) – The value to assign to the failed property of this BatchDeleteObjectsResult.
-
deleted¶ [Required] Gets the deleted of this BatchDeleteObjectsResult. Details of successfully deleted objects.
Returns: The deleted of this BatchDeleteObjectsResult. Return type: list[oci.object_storage.models.DeletedObjectResult]
-
failed¶ Gets the failed of this BatchDeleteObjectsResult. Details of failed delete operations.
Returns: The failed of this BatchDeleteObjectsResult. Return type: list[oci.object_storage.models.FailedObjectResult]
-