Skip to content

setAzureCloudAccountCustomerAppCredentials

Set credentials for the customer application, for the tenant domain name.

Arguments

Argument Type Description
input (required) SetAzureCloudAccountCustomerAppCredentialsInput! Input for setting the app credentials in the Azure Cloud Accounts.

Returns

Boolean!

Sample

mutation SetAzureCloudAccountCustomerAppCredentials($input: SetAzureCloudAccountCustomerAppCredentialsInput!) {
  setAzureCloudAccountCustomerAppCredentials(input: $input)
}
{
  "input": {
    "appId": "example-string",
    "appSecretKey": "example-string",
    "azureCloudType": "AZURECHINACLOUD",
    "shouldReplace": true
  }
}
{
  "data": {
    "setAzureCloudAccountCustomerAppCredentials": true
  }
}