Generated code for the 'sleep' command.
[libguestfs.git] / java / com / redhat / et / libguestfs / PV.java
1 /* libguestfs generated file
2  * WARNING: THIS FILE IS GENERATED BY 'src/generator.ml'.
3  * ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST.
4  *
5  * Copyright (C) 2009 Red Hat Inc.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 package com.redhat.et.libguestfs;
23
24 /**
25  * Libguestfs PV structure.
26  *
27  * @author rjones
28  * @see GuestFS
29  */
30 public class PV {
31   public String pv_name;
32   public String pv_uuid;
33   public String pv_fmt;
34   public long pv_size;
35   public long dev_size;
36   public long pv_free;
37   public long pv_used;
38   public String pv_attr;
39   public long pv_pe_count;
40   public long pv_pe_alloc_count;
41   public String pv_tags;
42   public long pe_start;
43   public long pv_mda_count;
44   public long pv_mda_free;
45 }