Skip to content

enableO365SharePoint

Enables SharePoint protection in the exocompute cluster.

Arguments

Argument Type Description
input (required) EnableO365SharePointInput! Input to enable o365 sharepoint.

Returns

RequestStatus!

Sample

mutation EnableO365SharePoint($input: EnableO365SharePointInput!) {
  enableO365SharePoint(input: $input) {
    success
  }
}
{
  "input": {
    "exocomputeClusterId": "example-string"
  }
}
{
  "data": {
    "enableO365SharePoint": {
      "success": true
    }
  }
}