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

com.github.narcissujsk.openstackjsk.model.image.v2.builder.ImageUpdateBuilder Maven / Gradle / Ivy

The newest version!
package com.github.narcissujsk.openstackjsk.model.image.v2.builder;

import com.github.narcissujsk.openstackjsk.common.Buildable;
import com.github.narcissujsk.openstackjsk.model.image.v2.ImageUpdate;
import com.github.narcissujsk.openstackjsk.openstack.image.v2.domain.PatchOperation;

import java.util.List;

public interface ImageUpdateBuilder extends Buildable.Builder {
    /**
     * @see ImageUpdate#getOps()
     */
    ImageUpdateBuilder ops(List ops);

    /**
     * @see ImageUpdate#getOps()
     */
    ImageUpdateBuilder ops(PatchOperation op);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy