Skip to content

createFailoverClusterApp

Create a failover cluster app Supported in v5.2+ Create a failover cluster app.

Arguments

Argument Type Description
input (required) CreateFailoverClusterAppInput! Input for V1CreateFailoverClusterApp.

Returns

CreateFailoverClusterAppReply!

Sample

mutation CreateFailoverClusterApp($input: CreateFailoverClusterAppInput!) {
  createFailoverClusterApp(input: $input)
}
{
  "input": {
    "config": {
      "failoverClusterAppSource": {},
      "failoverClusterId": "example-string",
      "failoverClusterType": "FAILOVER_CLUSTER_TYPE_UNIX_LIKE",
      "name": "example-string"
    }
  }
}
{
  "data": {
    "createFailoverClusterApp": {
      "output": {
        "connectionStatus": "FAILOVER_CLUSTER_APP_CONNECTION_STATUS_CONNECTED",
        "failoverClusterName": "example-string",
        "id": "example-string",
        "operatingSystemType": "FAILOVER_CLUSTER_OS_TYPE_AIX",
        "primaryClusterId": "example-string",
        "slaAssignment": "SLA_ASSIGNMENT_DERIVED"
      }
    }
  }
}