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-machines, returns=[MachineInfo], data=null}</pre> 014 */ 015// QApiCommandDescriptor{name=query-machines, returns=[MachineInfo], data=null} 016public class QueryMachinesCommand extends QApiCommand<java.lang.Void, QueryMachinesCommand.Response> { 017 018 /** Response to a QueryMachinesCommand. */ 019 public static class Response extends QApiResponse<java.util.List<MachineInfo>> { 020 } 021 022 /** Constructs a new QueryMachinesCommand. */ 023 public QueryMachinesCommand() { 024 super("query-machines", Response.class, null); 025 } 026 027}