ApiOzoneSnapshotResult Data Model

Detailed information about an Ozone snapshot command.

Properties
name data type description
processedBucketCount number Number of processed paths.
processedBuckets array of string The list of processed paths. This is only available in the full view.
unprocessedBucketCount number Number of unprocessed paths.
unprocessedBuckets array of string The list of unprocessed paths. Note that paths that are currently being processed will also be included in this list. This is only available in the full view.
createdSnapshotCount number Number of snapshots created.
createdSnapshots array of ApiOzoneSnapshotDetails List of snapshots created.

This is only available in the full view.

deletedSnapshotCount number Number of snapshots deleted.
deletedSnapshots array of ApiOzoneSnapshotDetails List of snapshots deleted. This is only available in the full view.
creationErrorCount number Number of errors detected when creating snapshots.
creationErrors array of ApiOzoneSnapshotError List of errors encountered when creating snapshots. This is only available in the full view.
deletionErrorCount number Number of errors detected when deleting snapshots.
deletionErrors array of ApiOzoneSnapshotError List of errors encountered when deleting snapshots. This is only available in the full view.

Example

{
  "processedBucketCount" : 12345,
  "processedBuckets" : [ "...", "..." ],
  "unprocessedBucketCount" : 12345,
  "unprocessedBuckets" : [ "...", "..." ],
  "createdSnapshotCount" : 12345,
  "createdSnapshots" : [ {
    "snapshotRef" : {
      "snapshotName" : "...",
      "bucketRef" : { }
    },
    "creationTime" : 12345
  }, {
    "snapshotRef" : {
      "snapshotName" : "...",
      "bucketRef" : { }
    },
    "creationTime" : 12345
  } ],
  "deletedSnapshotCount" : 12345,
  "deletedSnapshots" : [ {
    "snapshotRef" : {
      "snapshotName" : "...",
      "bucketRef" : { }
    },
    "creationTime" : 12345
  }, {
    "snapshotRef" : {
      "snapshotName" : "...",
      "bucketRef" : { }
    },
    "creationTime" : 12345
  } ],
  "creationErrorCount" : 12345,
  "creationErrors" : [ {
    "snapshotRef" : {
      "snapshotName" : "...",
      "bucketRef" : { }
    },
    "error" : "..."
  }, {
    "snapshotRef" : {
      "snapshotName" : "...",
      "bucketRef" : { }
    },
    "error" : "..."
  } ],
  "deletionErrorCount" : 12345,
  "deletionErrors" : [ {
    "snapshotRef" : {
      "snapshotName" : "...",
      "bucketRef" : { }
    },
    "error" : "..."
  }, {
    "snapshotRef" : {
      "snapshotName" : "...",
      "bucketRef" : { }
    },
    "error" : "..."
  } ]
}