Skip to content

allValidReplicationSources

Lists all valid replication source clusters.

Arguments

Argument Type Description
first Int Returns the first n elements from the list.
after String Returns the elements in the list that occur after the specified cursor.
last Int Returns the last n elements from the list.
before String Returns the elements in the list that occur before the specified cursor.
sortBy ListValidReplicationSourcesSortByField Field to sort by for valid replication sources.
sortOrder SortOrder Sort order.
isCrossAccount Boolean Specification for Rubrik clusters to be retrieved - local or cross-account.

Returns

ValidReplicationSourceConnection!

Sample

query {
  allValidReplicationSources(first: 10) {
    nodes {
      accountName
      apiVersion
      name
      uuid
      version
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}
{}
{
  "data": {
    "allValidReplicationSources": {
      "nodes": [
        [
          {
            "accountName": "example-string",
            "apiVersion": "example-string",
            "name": "example-string",
            "uuid": "00000000-0000-0000-0000-000000000000",
            "version": "example-string"
          }
        ]
      ],
      "pageInfo": {
        "endCursor": "example-string",
        "hasNextPage": true,
        "hasPreviousPage": true,
        "startCursor": "example-string"
      }
    }
  }
}