/*
* Make the operation return minimum information. We just want to make sure we can read the resource. There's no
* need to read the children names, evaluate defaults, and retrieve runtime attributes.
*/
readResourceOperation.attributesOnly(true);
readResourceOperation.includeDefaults(false);
readResourceOperation.includeRuntime(false);
Result res = getASConnection().execute(readResourceOperation, AVAIL_OP_TIMEOUT_SECONDS);
if (res != null && res.isSuccess()) {
return AvailabilityType.UP;