io.pivotal.services.plugin.CfServiceDetail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ya-cf-app-gradle-plugin Show documentation
Show all versions of ya-cf-app-gradle-plugin Show documentation
Gradle Plugin to push an application to Cloud Foundry
package io.pivotal.services.plugin;
import org.cloudfoundry.Nullable;
import org.immutables.value.Value;
import java.util.List;
/**
* Details of a service instance
*
* @author Biju Kunjummen
*/
@Value.Immutable(copy = true)
public abstract class CfServiceDetail {
public abstract String name();
public abstract String plan();
public abstract String instanceName();
@Nullable
public abstract Integer completionTimeout();
@Nullable
public abstract List tags();
}