Skip to content

updateAzureAccount

No description available.

Arguments

Argument Type Description
input (required) UpdateAzureAccountInput! Input for editing an Azure account.

Returns

CloudAccount!

Sample

mutation UpdateAzureAccount($input: UpdateAzureAccountInput!) {
  updateAzureAccount(input: $input) {
    cloudAccountId
    cloudProvider
    connectionStatus
    description
    name
  }
}
{
  "input": {
    "id": "example-string"
  }
}
{
  "data": {
    "updateAzureAccount": {
      "cloudAccountId": "example-string",
      "cloudProvider": "CLOUD_ACCOUNT_AWS",
      "connectionStatus": "CONNECTED",
      "description": "example-string",
      "name": "example-string"
    }
  }
}