use of com.cloudera.api.swagger.model.ApiRoleRef in project cloudbreak by hortonworks.
the class ClouderaManagerDecommisionerTest method getBusyHost.
private ApiHost getBusyHost() {
ApiHost apihost = new ApiHost();
apihost.setHostname("hg0-host-1");
ApiRoleRef apiroleref = new ApiRoleRef();
apiroleref.setRoleStatus(ApiRoleState.BUSY);
apihost.addRoleRefsItem(apiroleref);
return apihost;
}
Aggregations