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

org.openstack4j.model.magnum.PodBuilder Maven / Gradle / Ivy

There is a newer version: 3.12
Show newest version
package org.openstack4j.model.magnum;

import java.util.List;

import org.openstack4j.common.Buildable.Builder;

public interface PodBuilder extends Builder {
    /**
     * @see Pod#getId
     */
    PodBuilder id(String id);

    /**
     * @see Pod#getUuid
     */
    PodBuilder uuid(String uuid);

    /**
     * @see Pod#getName
     */
    PodBuilder name(String name);

    /**
     * @see Pod#getDesc
     */
    PodBuilder desc(String desc);

    /**
     * @see Pod#getBayUuid
     */
    PodBuilder bayUuid(String bayUuid);

    /**
     * @see Pod#getImages
     */
    PodBuilder images(List images);

    /**
     * @see Pod#getLabels
     */
    PodBuilder labels(Label labels);

    /**
     * @see Pod#getStatus
     */
    PodBuilder status(String status);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy