Package org.openstack4j.model.image.v2
Interface ImageUpdate
-
- All Superinterfaces:
Buildable<ImageUpdateBuilder>,ModelEntity,Serializable
- All Known Implementing Classes:
GlanceImageUpdate
public interface ImageUpdate extends ModelEntity, Buildable<ImageUpdateBuilder>
A class for defining json patch operations. Image is the only API to take json patch and not a changed object. This allows you to define the patch object yourself.- Author:
- emjburns
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.openstack4j.common.Buildable
Buildable.Builder<T extends Buildable.Builder<T,M>,M extends Buildable<?>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<PatchOperation>getOps()A list of Patch operations for updating an image Patch operation description found here: http://specs.openstack.org/openstack/glance-specs/specs/api/v2/http-patch-image-api-v2.html
-
-
-
Method Detail
-
getOps
List<PatchOperation> getOps()
A list of Patch operations for updating an image Patch operation description found here: http://specs.openstack.org/openstack/glance-specs/specs/api/v2/http-patch-image-api-v2.html- Returns:
- List of PatchOperations
-
-