annotations.me.snowdrop.applicationcrd.api.model.SchemaFluent Maven / Gradle / Ivy
package me.snowdrop.applicationcrd.api.model;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.fabric8.kubernetes.api.builder.Fluent;
import io.fabric8.kubernetes.api.builder.Nested;
import java.lang.String;
import java.lang.Deprecated;
import javax.validation.Valid;
import java.lang.Object;
import java.lang.Boolean;
import java.util.Map;
public interface SchemaFluent> extends Fluent{
/**
* This method has been deprecated, please use method buildApplication instead.
* @return The buildable object.
*/
@Deprecated public Application getApplication();
public Application buildApplication();
public A withApplication(Application application);
public Boolean hasApplication();
public SchemaFluent.ApplicationNested withNewApplication();
public SchemaFluent.ApplicationNested withNewApplicationLike(Application item);
public SchemaFluent.ApplicationNested editApplication();
public SchemaFluent.ApplicationNested editOrNewApplication();
public SchemaFluent.ApplicationNested editOrNewApplicationLike(Application item);
/**
* This method has been deprecated, please use method buildApplicationList instead.
* @return The buildable object.
*/
@Deprecated public ApplicationList getApplicationList();
public ApplicationList buildApplicationList();
public A withApplicationList(ApplicationList applicationList);
public Boolean hasApplicationList();
public SchemaFluent.ApplicationListNested withNewApplicationList();
public SchemaFluent.ApplicationListNested withNewApplicationListLike(ApplicationList item);
public SchemaFluent.ApplicationListNested editApplicationList();
public SchemaFluent.ApplicationListNested editOrNewApplicationList();
public SchemaFluent.ApplicationListNested editOrNewApplicationListLike(ApplicationList item);
public interface ApplicationNested extends io.fabric8.kubernetes.api.builder.Nested,ApplicationFluent>{
public N and(); public N endApplication();
}
public interface ApplicationListNested extends io.fabric8.kubernetes.api.builder.Nested,ApplicationListFluent>{
public N and(); public N endApplicationList();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy