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

org.openstack4j.api.compute.ServerTagService Maven / Gradle / Ivy

There is a newer version: 3.12
Show newest version
package org.openstack4j.api.compute;

import org.openstack4j.common.RestService;
import org.openstack4j.model.common.ActionResponse;
import org.openstack4j.openstack.compute.domain.NovaServerTag;

public interface ServerTagService extends RestService {

    NovaServerTag list(String serverId);

    NovaServerTag replace(String serverId, NovaServerTag tag);

    ActionResponse deleteAll(String serverId);

    ActionResponse delete(String serverId, String tag);

    ActionResponse check(String serverId, String tag);

    ActionResponse addSingle(String serverId, String tag);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy