Skip to content

gcpNativeDisableProject

Triggers GCP native disable project job for the given project ID.

Arguments

Argument Type Description
input (required) GcpNativeDisableProjectInput! Input required to disable protection for a GCP native project.

Returns

AsyncJobStatus!

Sample

mutation GcpNativeDisableProject($input: GcpNativeDisableProjectInput!) {
  gcpNativeDisableProject(input: $input) {
    error
    jobId
  }
}
{
  "input": {
    "projectId": "00000000-0000-0000-0000-000000000000",
    "shouldDeleteNativeSnapshots": true
  }
}
{
  "data": {
    "gcpNativeDisableProject": {
      "error": "example-string",
      "jobId": "example-string"
    }
  }
}