org.cloudfoundry.client.v3.routes._ReplaceRouteDestinationsRequest Maven / Gradle / Ivy
The newest version!
package org.cloudfoundry.client.v3.routes;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import org.immutables.value.Value;
import java.util.List;
/**
* The request payload for the Replace Route Destination operation
*/
@JsonSerialize
@Value.Immutable
abstract class _ReplaceRouteDestinationsRequest {
/**
* The destinations for the route
*/
@JsonProperty("destinations")
abstract List getDestinations();
/**
* The route id
*/
@JsonIgnore
abstract String getRouteId();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy