Skip to content

gcpCloudAccountUpgradeProjects

Upgrade cloud account for the given GCP project cloud account IDs and feature.

Arguments

Argument Type Description
input (required) GcpCloudAccountUpgradeProjectsInput! Input required to upgrade a list of GCP projects.

Returns

GcpCloudAccountUpgradeProjectsReply!

Sample

mutation GcpCloudAccountUpgradeProjects($input: GcpCloudAccountUpgradeProjectsInput!) {
  gcpCloudAccountUpgradeProjects(input: $input)
}
{
  "input": {
    "featuresWithPermissionGroups": [
      {}
    ],
    "projectIds": [
      "00000000-0000-0000-0000-000000000000"
    ],
    "sessionId": "example-string"
  }
}
{
  "data": {
    "gcpCloudAccountUpgradeProjects": {
      "gcpProjectUpgradeStatuses": [
        {
          "error": "example-string",
          "projectUuid": "example-string",
          "success": true
        }
      ]
    }
  }
}