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

com.openshift.restclient.model.serviceaccount.IServiceAccount Maven / Gradle / Ivy

The newest version!
package com.openshift.restclient.model.serviceaccount;

import java.util.Collection;

import com.openshift.restclient.model.IResource;

/**
 * @author David Simansky | [email protected]
 */
public interface IServiceAccount extends IResource {

    /**
     * Get the collection of all secrets
     * 
     */
    Collection getSecrets();

    /**
     * Add new secret name
     * 
     * @param secret
     *            - secret name
     */
    void addSecret(String secret);

    /**
     * Get the collection of all imagePullSecrets
     * 
     */
    Collection getImagePullSecrets();

    /**
     * Add new imagePullSecret name
     * 
     * @param imagePullSecret
     *            - imagePullSecretName
     */
    void addImagePullSecret(String imagePullSecret);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy