annotations.io.alauda.kubernetes.api.model.UserAccountFluent Maven / Gradle / Ivy
package io.alauda.kubernetes.api.model;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.alauda.kubernetes.api.builder.Fluent;
import io.alauda.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 UserAccountFluent> extends Fluent{
/**
* This method has been deprecated, please use method buildSecret instead.
*/
@Deprecated public SecretKeySetRef getSecret();
public SecretKeySetRef buildSecret();
public A withSecret(SecretKeySetRef secret);
public Boolean hasSecret();
public UserAccountFluent.SecretNested withNewSecret();
public UserAccountFluent.SecretNested withNewSecretLike(SecretKeySetRef item);
public UserAccountFluent.SecretNested editSecret();
public UserAccountFluent.SecretNested editOrNewSecret();
public UserAccountFluent.SecretNested editOrNewSecretLike(SecretKeySetRef item);
public A withNewSecret(String apiTokenKey,String name,String namespace,String usernameKey);
public interface SecretNested extends io.alauda.kubernetes.api.builder.Nested,SecretKeySetRefFluent>{
public N and(); public N endSecret();
}
}