All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cloudfoundry.client.v3.routes._CreateRouteRequest Maven / Gradle / Ivy

There is a newer version: 5.12.2.RELEASE
Show newest version
package org.cloudfoundry.client.v3.routes;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import org.cloudfoundry.Nullable;
import org.cloudfoundry.client.v3.Metadata;
import org.immutables.value.Value;

/**
 * The request payload for the Create Route operation
 */
@JsonSerialize
@Value.Immutable
abstract class _CreateRouteRequest {

    /**
     * The host
     */
    @Nullable
    @JsonProperty("host")
    abstract String getHost();

    /**
     * The metadata
     */
    @Nullable
    @JsonProperty("metadata")
    abstract Metadata getMetadata();

    /**
     * The path
     */
    @Nullable
    @JsonProperty("path")
    abstract String getPath();

    /**
     * The port
     */
    @JsonProperty("port")
    @Nullable
    abstract Integer getPort();

    /**
     * The relationships
     */
    @JsonProperty("relationships")
    abstract RouteRelationships getRelationships();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy