Package io.fathom.cloud.secrets.api.os.model

Examples of io.fathom.cloud.secrets.api.os.model.SecretList


    @GET
    public SecretList listSecrets() throws CloudException {
        Auth auth = getAuth();
        Project project = getProject();

        SecretList ret = new SecretList();
        ret.secrets = Lists.newArrayList();

        for (SecretService.Secret secret : secretsService.list(auth, project)) {
            ret.secrets.add(toModel(getData(secret)));
        }
View Full Code Here

TOP

Related Classes of io.fathom.cloud.secrets.api.os.model.SecretList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.