mirror of
https://github.com/php/pecl-virtualization-libvirt.git
synced 2026-03-26 16:22:06 +01:00
126 lines
5.9 KiB
HTML
126 lines
5.9 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<title>Get storagepool information</title>
|
|
</head>
|
|
<body><div class="manualnavbar" style="text-align: center;">
|
|
<div class="prev" style="text-align: left; float: left;"><a href="function.libvirt-node-get-info.html">libvirt_node_get_info</a></div>
|
|
<div class="next" style="text-align: right; float: right;"><a href="function.libvirt-storagepool-lookup-by-name.html">libvirt_storagepool_lookup_by_name</a></div>
|
|
<div class="up"><a href="ref.libvirt.html">Libvirt Functions</a></div>
|
|
<div class="home"><a href="index.html">PHP Manual</a></div>
|
|
</div><hr /><div id="function.libvirt-storagepool-get-info" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">libvirt_storagepool_get_info</h1>
|
|
<p class="verinfo">(php-libvirt 0.4)</p><p class="refpurpose"><span class="refname">libvirt_storagepool_get_info</span> — <span class="dc-title">Get storagepool information</span></p>
|
|
|
|
</div>
|
|
|
|
<a name="function.libvirt-storagepool-get-info.description"></a><div class="refsect1 description">
|
|
<h3 class="title">Description</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="type">array</span> <span class="methodname"><b>libvirt_storagepool_get_info</b></span>
|
|
( <span class="methodparam"><span class="type">resource</span> <tt class="parameter">$connection</tt></span>
|
|
)</div>
|
|
|
|
<p class="para rdfs-comment">
|
|
This function returns array containing storagepool information
|
|
</p>
|
|
<blockquote><p><b class="note">Note</b>: <b>Warning</b><br />
|
|
.
|
|
This function returns values that may be bigger than 32bit integer limit. Please read this <a href="libvirt.longlong.html" class="link">note</a> for more details.
|
|
<br />
|
|
</p></blockquote>
|
|
</div>
|
|
|
|
|
|
<a name="function.libvirt-storagepool-get-info.parameters"></a><div class="refsect1 parameters">
|
|
<h3 class="title">Parameters</h3>
|
|
<p class="para">
|
|
</p><dl>
|
|
|
|
<dt class="varlistentry">
|
|
|
|
<span class="term"><i><tt class="parameter">connection</tt></i>
|
|
</span>
|
|
|
|
</dt><dd class="listitem">
|
|
|
|
<p class="para">
|
|
Connection resource of storagepool
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
</dl>
|
|
<p>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<a name="function.libvirt-storagepool-get-info.returnvalues"></a><div class="refsect1 returnvalues">
|
|
<h3 class="title">Return Values</h3>
|
|
|
|
<p class="para">
|
|
Array with storagepool information. <b><tt class="constant">FALSE</tt></b> on failure
|
|
</p>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<a name="function.libvirt-storagepool-get-info.examples"></a><div class="refsect1 examples">
|
|
<h3 class="title">Examples</h3>
|
|
<p class="para">
|
|
</p><div class="example">
|
|
<p><b>Example #1 <b>libvirt_storagepool_get_info()</b> example</b></p>
|
|
<div class="example-contents para"><p>
|
|
Connection resource of storagepool
|
|
</p></div>
|
|
<div class="example-contents programlisting">
|
|
<div class="phpcode"><code><span style="color: #000000">
|
|
<span style="color: #0000BB"><?php<br /><br /> $conn</span><span style="color: #007700">=</span><span style="color: #0000BB">libvirt_connect</span><span style="color: #007700">(</span><span style="color: #0000BB">$uri</span><span style="color: #007700">,</span><span style="color: #0000BB">true</span><span style="color: #007700">);<br /> </span><span style="color: #0000BB">$pool</span><span style="color: #007700">=</span><span style="color: #0000BB">libvirt_storagepools_lookup_by_name</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">,</span><span style="color: #DD0000">'default'</span><span style="color: #007700">);<br /> </span><span style="color: #0000BB">$poolInfo </span><span style="color: #007700">= </span><span style="color: #0000BB">libvirt_storagepool_get_info</span><span style="color: #007700">(</span><span style="color: #0000BB">$pool</span><span style="color: #007700">)<br /><br /> </span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$poolInfo</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?></span>
|
|
</span>
|
|
</code></div>
|
|
</div>
|
|
|
|
<div class="example-contents para"><p>The above example will output
|
|
something similar to:</p></div>
|
|
<div class="example-contents screen">
|
|
<div class="cdata"><pre>
|
|
array(4) {
|
|
["state"]=>
|
|
int(2)
|
|
["capacity"]=>
|
|
int(118996598784)
|
|
["allocation"]=>
|
|
int(34414264320)
|
|
["available"]=>
|
|
int(84582334464)
|
|
}
|
|
</pre></div>
|
|
</div>
|
|
</div><p>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<a name="function.libvirt-storagepool-get-info.seealso"></a><div class="refsect1 seealso">
|
|
<h3 class="title">See Also</h3>
|
|
<p class="para">
|
|
</p><ul class="simplelist">
|
|
<li class="member"><a href="function.libvirt-list-storagepools.html" class="function" rel="rdfs-seeAlso">libvirt_list_storagepools()</a> - List all storagepools</li>
|
|
<li class="member"><a href="function.libvirt-storagepool-lookup-by-name.html" class="function" rel="rdfs-seeAlso">libvirt_storagepool_lookup_by_name()</a> - Lookup storagepool resource by name</li>
|
|
<li class="member"><a href="function.libvirt-list-volumes.html" class="function" rel="rdfs-seeAlso">libvirt_list_volumes()</a> - List all volumes in a storagepool</li>
|
|
</ul><p>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
</div><hr /><div class="manualnavbar" style="text-align: center;">
|
|
<div class="prev" style="text-align: left; float: left;"><a href="function.libvirt-node-get-info.html">libvirt_node_get_info</a></div>
|
|
<div class="next" style="text-align: right; float: right;"><a href="function.libvirt-storagepool-lookup-by-name.html">libvirt_storagepool_lookup_by_name</a></div>
|
|
<div class="up"><a href="ref.libvirt.html">Libvirt Functions</a></div>
|
|
<div class="home"><a href="index.html">PHP Manual</a></div>
|
|
</div></body></html>
|