EGRCommandResult
- Last UpdatedJun 09, 2017
- 2 minute read
Indicates the result of a command issued to the GR.
enum EGRCommandResult
{
cmdUnknownError = -1,
cmdSuccess = 0,
cmdInsufficientPermissions = 101,
cmdNoSuchGRNode = 102,
cmdNoSuchUser = 103,
cmdPasswordIncorrect = 104,
cmdLicenseUnavailable = 105,
cmdNoSuchFile = 201,
cmdCouldntCreateFile = 202,
cmdObjectIsCheckedOut = 301,
cmdObjectIsCheckedOutToSomeoneElse = 302,
cmdObjectNotCheckedOutToMe = 303,
cmdObjectCannotBeOverwritten = 401,
cmdTemplateInUse = 402,
cmdObjectIsAContainer = 403,
cmdObjectHostNotFound = 404,
cmdInstanceIsHost = 405,
cmdObjectIsRequired = 406,
cmdObjectNotAnAutomationObject = 407,
cmdObjectInBadState = 408,
cmdCustomConfigurationError = 409,
cmdObjectInReadOnlyMode = 410,
cmdObjectHostNotDeployed = 501,
cmdInstanceIsDeployed = 502,
cmdInvalidGRLoadMode = 503,
cmdOEMVersionIncompatible = 504,
cmdRetryClientSync = 505,
cmdSyncSemaphore = 506,
cmdOutOfSync = 507
}
Members
cmdLicenseUnavailable
Operation failed because a license problem occurred.
cmdCustomConfigurationError
The operation failed because of configuration error.
cmdObjectHostNotFound
The operation failed because the given instance does not have a host.
cmdInsufficientPermissions
Operation failed because the user has insufficient permission.
cmdNoSuchGRNode
Operation failed because the given GR Node is invalid.
cmdObjectIsAContainer
The operation failed because the object is a container of other objects.
cmdObjectHostNotDeployed
The operation failed because the host of the given instance is not deployed.
cmdNoSuchFile
The specified file was not found.
cmdObjectNotAnAutomationObject
The operation failed because the object is not an AutomationObject.
cmdObjectIsRequired
The object could not be deleted because it is a required object.
cmdSuccess
Success code.
cmdUnknownError
Unknown error.
cmdObjectInBadState
The operation failed because the object is in a bad state.
cmdObjectCannotBeOverwritten
The specified object already exists and cannot be overwritten.
cmdObjectIsCheckedOutToSomeoneElse
The operation failed because the object is currently checked out to someone else.
cmdObjectInReadOnlyMode
The operation failed because the object is in read-only mode.
cmdTemplateInUse
The operation failed because the template has one or more objects derived from it.
cmdInstanceIsHost
The operation failed because the instance is a host of other objects.
cmdCouldntCreateFile
The operation failed because the file could not be created.
cmdInstanceIsDeployed
The operation failed because the instance is currently deployed.
cmdObjectNotCheckedOutToMe
The operation failed because the object is not checked out to the current user.
cmdObjectIsCheckedOut
The operation failed because the object is currently checked out.
cmdNoSuchUser
Operation failed because the given user name is invalid.
cmdPasswordIncorrect
Operation failed because the given password is invalid.
cmdInvalidGRLoadMode
The operation failed because enum GRLoad mode is invalid.
cmdOEMVersionIncompatible
The operation failed because client and galaxy OEMVersions are incompatible.
cmdRetryClientSync
The operation failed because enum cmdRetryClientSync mode is invalid.
cmdSyncSemaphore
The operation failed because enum cmdForceSynchronize mode is invalid.
cmdOutOfSync
The operation failed because enum cmdOutOfSync mode is invalid.