001package org.anarres.qemu.qapi.api;
002
003import com.fasterxml.jackson.annotation.JsonInclude;
004import com.fasterxml.jackson.annotation.JsonProperty;
005import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
006import javax.annotation.CheckForNull;
007import javax.annotation.Nonnull;
008import org.anarres.qemu.qapi.common.*;
009
010/**
011 * Autogenerated class.
012 *
013 * <pre>QApiCommandDescriptor{name=query-named-block-nodes, returns=[BlockDeviceInfo], data=null}</pre>
014 */
015// QApiCommandDescriptor{name=query-named-block-nodes, returns=[BlockDeviceInfo], data=null}
016public class QueryNamedBlockNodesCommand extends QApiCommand<java.lang.Void, QueryNamedBlockNodesCommand.Response> {
017
018        /** Response to a QueryNamedBlockNodesCommand. */
019        public static class Response extends QApiResponse<java.util.List<BlockDeviceInfo>> {
020        }
021
022        /** Constructs a new QueryNamedBlockNodesCommand. */
023        public QueryNamedBlockNodesCommand() {
024                super("query-named-block-nodes", Response.class, null);
025        }
026
027}