Skip to content

deleteGuestCredentialById

Delete guest OS credentials.

Arguments

Argument Type Description
input (required) DeleteGuestCredentialByIdInput! Input for InternalDeleteGuestCredentialById.

Returns

Boolean!

Sample

mutation DeleteGuestCredentialById($input: DeleteGuestCredentialByIdInput!) {
  deleteGuestCredentialById(input: $input)
}
{
  "input": {
    "clusterUuid": "example-string",
    "id": "example-string"
  }
}
{
  "data": {
    "deleteGuestCredentialById": true
  }
}