com.openshift.restclient.model.serviceaccount.IServiceAccount Maven / Gradle / Ivy
package com.openshift.restclient.model.serviceaccount;
import com.openshift.restclient.model.IResource;
import java.util.Collection;
/**
* @author David Simansky | [email protected]
*/
public interface IServiceAccount extends IResource {
/**
* Get the collection of all secrets
* @return
*/
Collection getSecrets();
/**
* Add new secret name
* @param secret - secret name
*/
void addSecret(String secret);
/**
* Get the collection of all imagePullSecrets
* @return
*/
Collection getImagePullSecrets();
/**
* Add new imagePullSecret name
* @param imagePullSecret - imagePullSecretName
*/
void addImagePullSecret(String imagePullSecret);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy