public enum ServiceDefinitionRequires extends Enum<ServiceDefinitionRequires>
requires field of a service definition.| Enum Constant and Description |
|---|
SERVICE_REQUIRES_ROUTE_FORWARDING
Indicates that the service broker allows the platform to bind routes to a service instance.
|
SERVICE_REQUIRES_SYSLOG_DRAIN
Indicates that the service broker allows the platform to stream logs from bound applications to a service
instance.
|
SERVICE_REQUIRES_VOLUME_MOUNT
Indicates that the service broker allows the platform to bind volume mounts to an application.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ServiceDefinitionRequires |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceDefinitionRequires[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceDefinitionRequires SERVICE_REQUIRES_SYSLOG_DRAIN
CreateServiceInstanceBindingResponse.syslogDrainUrl field in response to a bind request.public static final ServiceDefinitionRequires SERVICE_REQUIRES_ROUTE_FORWARDING
route value in the
bindResource field of a CreateServiceInstanceBindingRequest.public static final ServiceDefinitionRequires SERVICE_REQUIRES_VOLUME_MOUNT
CreateServiceInstanceVolumeBindingResponse.volumeMounts field in response
to a bind request.public static ServiceDefinitionRequires[] values()
for (ServiceDefinitionRequires c : ServiceDefinitionRequires.values()) System.out.println(c);
public static ServiceDefinitionRequires valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<ServiceDefinitionRequires>