andExpect(method(HttpMethod.PUT)).
andExpect(jsonPath("$.*", hasSize(2))).
andExpect(jsonPath("$.projectionData", nullValue())).
andExpect(jsonPath("$.action", is(ModifyAction.START.toString().toLowerCase()))).
andRespond(withSuccess(responseBody, MediaType.APPLICATION_JSON));
ContainerClusterModifyRequest request = new ContainerClusterModifyRequest();
request.setAction("start");
ContainerClusterResource response = operations.clusterStart("cluster1", request);
assertThat(response, notNullValue());
}