Skip to content

possibleSnapshotLocationsForObjects

GetPossibleSnapshotLocationsForObjects returns all valid locations where unexpired snapshots of the objects are present. This includes both RSC (MBL archival groups) and CDM snapshot locations.

Arguments

Argument Type Description
input (required) GetPossibleSnapshotLocationsForObjectsInput! Request containing object IDs and optional pagination parameters. If pagination is not provided, all results will be returned.

Returns

GetPossibleSnapshotLocationsForObjectsResp!

Sample

query PossibleSnapshotLocationsForObjects($input: GetPossibleSnapshotLocationsForObjectsInput!) {
  possibleSnapshotLocationsForObjects(input: $input) {
    hasNext
  }
}
{
  "input": {
    "objectIds": [
      "example-string"
    ]
  }
}
{
  "data": {
    "possibleSnapshotLocationsForObjects": {
      "hasNext": true,
      "snapshotLocations": [
        {
          "locationId": "example-string",
          "locationName": "example-string"
        }
      ]
    }
  }
}