Skip to content

gcpNativeRefreshProjects

Trigger GCP native refresh project job for the given project IDs

Arguments

Argument Type Description
input (required) GcpNativeRefreshProjectsInput! Input to refresh GCP native projects.

Returns

BatchAsyncJobStatus!

Sample

mutation GcpNativeRefreshProjects($input: GcpNativeRefreshProjectsInput!) {
  gcpNativeRefreshProjects(input: $input)
}
{
  "input": {
    "projectIds": [
      "00000000-0000-0000-0000-000000000000"
    ]
  }
}
{
  "data": {
    "gcpNativeRefreshProjects": {
      "errors": [
        {
          "error": "example-string",
          "rubrikObjectId": "example-string"
        }
      ],
      "jobIds": [
        {
          "jobId": "example-string",
          "rubrikObjectId": "example-string"
        }
      ]
    }
  }
}