public <T extends ItemBase> JobData doAction(T item, Action action) throws OpsException, IOException {
TypedPlatformLayerClient client = getTypedClient();
PlatformLayerKey key = item.getKey();
return client.doAction(key, action);
}
public <T extends ItemBase> JobData doConfigure(T item) throws OpsException, IOException {
return doAction(item, ConfigureAction.create());
}