-
Notifications
You must be signed in to change notification settings - Fork 322
Closed
Description
expected behavior
As a cf-java client user
- in order to implement the equivalent of cf CLI workflow
cf services
which displays the maintenance_info as a new upgrade available column andcf service s
which displays the maintenance_info details. - I need a
MaintenanceInfo
to be returned from
CloudFoundryOperations.Services:
Mono<ServiceInstance> getInstance(GetServiceInstanceRequest request);
Flux<ServiceInstanceSummary> listInstances();
current behavior
MaintenanceInfo
to be returned from these calls
Line 28 in 9fb5485
abstract class _ServiceInstance extends AbstractServiceInstanceSummary { |
Line 26 in 9fb5485
public abstract class AbstractServiceInstanceSummary { |
Workaround
Use low level client org.cloudfoundry.client.v2.serviceinstances
instead of cf-operations