|
1 |
| -ProxmoxVE API Client |
| 1 | +Proxmox API Client for Proxmox VE & Proxmox MG |
2 | 2 | ====================
|
3 | 3 |
|
4 |
| -This **PHP 5.5+** library allows you to interact with your Proxmox server via API. |
5 |
| - |
6 |
| -[](https://travis-ci.org/ZzAntares/ProxmoxVE) |
7 |
| -[](https://packagist.org/packages/zzantares/proxmoxve) |
8 |
| -[](https://packagist.org/packages/zzantares/proxmoxve) |
9 |
| -[](https://packagist.org/packages/zzantares/proxmoxve) |
10 |
| -[](https://packagist.org/packages/zzantares/proxmoxve) |
11 |
| - |
12 |
| -> I'm not actively maintaining this library anymore (I've left PHP behind) but **the API is pretty stable**, if it doesn't suit your needs take a look at the forks or better yet create a PR to add the things you're missing, if you're interested I can transfer the project to you. |
13 |
| -
|
14 |
| -**Looking for a PHP 5.3 library version?** Search through the [releases](https://github.com/ZzAntares/ProxmoxVE/releases) one that fits your needs, I recommend using the [2.1.1](https://github.com/ZzAntares/ProxmoxVE/releases/tag/v2.1.1) version. |
15 |
| - |
16 |
| - |
17 |
| -Installation |
18 |
| ------------- |
19 |
| - |
20 |
| -Recommended installation is using [Composer], if you do not have [Composer] what are you waiting? |
21 |
| - |
22 |
| -In the root of your project execute the following: |
23 |
| - |
24 |
| -```sh |
25 |
| -$ composer require zzantares/proxmoxve ~4.0 |
26 |
| -``` |
27 |
| - |
28 |
| -Or add this to your `composer.json` file: |
29 |
| - |
30 |
| -```json |
31 |
| -{ |
32 |
| - "require": { |
33 |
| - "zzantares/proxmoxve": "~4.0" |
34 |
| - } |
35 |
| -} |
36 |
| -``` |
37 |
| - |
38 |
| -Then perform the installation: |
39 |
| -```sh |
40 |
| -$ composer install --no-dev |
41 |
| -``` |
42 |
| - |
43 |
| - |
44 |
| -Usage |
45 |
| ------ |
46 |
| - |
47 |
| -```php |
48 |
| -<?php |
49 |
| - |
50 |
| -// Require the autoloader |
51 |
| -require_once 'vendor/autoload.php'; |
52 |
| - |
53 |
| -// Use the library namespace |
54 |
| -use ProxmoxVE\Proxmox; |
55 |
| - |
56 |
| -// Create your credentials array |
57 |
| -$credentials = [ |
58 |
| - 'hostname' => 'proxmox.server.com', // Also can be an IP |
59 |
| - 'username' => 'root', |
60 |
| - 'password' => 'secret', |
61 |
| -]; |
62 |
| - |
63 |
| -// realm and port defaults to 'pam' and '8006' but you can specify them like so |
64 |
| -$credentials = [ |
65 |
| - 'hostname' => 'proxmox.server.com', |
66 |
| - 'username' => 'root', |
67 |
| - 'password' => 'secret', |
68 |
| - 'realm' => 'pve', |
69 |
| - 'port' => '9009', |
70 |
| -]; |
71 |
| - |
72 |
| -// Then simply pass your credentials when creating the API client object. |
73 |
| -$proxmox = new Proxmox($credentials); |
74 |
| - |
75 |
| -$allNodes = $proxmox->get('/nodes'); |
76 |
| - |
77 |
| -print_r($allNodes); |
78 |
| -``` |
79 |
| - |
80 |
| - |
81 |
| -Sample output: |
82 |
| - |
83 |
| -```php |
84 |
| -Array |
85 |
| -( |
86 |
| - [data] => Array |
87 |
| - ( |
88 |
| - [0] => Array |
89 |
| - ( |
90 |
| - [disk] => 2539465464 |
91 |
| - [cpu] => 0.031314446882002 |
92 |
| - [maxdisk] => 30805066770 |
93 |
| - [maxmem] => 175168446464 |
94 |
| - [node] => mynode1 |
95 |
| - [maxcpu] => 24 |
96 |
| - [level] => |
97 |
| - [uptime] => 139376 |
98 |
| - [id] => node/mynode1 |
99 |
| - [type] => node |
100 |
| - [mem] => 20601992182 |
101 |
| - ) |
102 |
| - |
103 |
| - ) |
104 |
| - |
105 |
| -) |
106 |
| -``` |
107 |
| - |
108 |
| - |
109 |
| -Want to know more nifty tricks? |
110 |
| -------------------------------- |
111 |
| - |
112 |
| -Checkout our [wiki](https://github.com/ZzAntares/ProxmoxVE/wiki). |
113 |
| - |
114 |
| - |
115 |
| -Docs |
116 |
| ----- |
117 |
| - |
118 |
| -On your proxmox client object you can use `get()`, `create()`, `set()` and `delete()` functions for all resources specified at [PVE2 API Documentation], params are passed as the second parameter in an associative array. |
119 |
| - |
120 |
| -**What resources or paths can I interact with and how?** |
121 |
| - |
122 |
| -In your proxmox server you can use the [pvesh CLI Tool](http://pve.proxmox.com/wiki/Proxmox_VE_API#Using_.27pvesh.27_to_access_the_API) to manage all the pve resources, you can use this library in the exact same way you would use the pvesh tool. For instance you could run `pvesh` then, as the screen message should say, you can type `help [path] [--verbose]` to see how you could use a path and what params you should pass to it. Be sure to [read about the pvesh CLI Tool](http://pve.proxmox.com/wiki/Proxmox_VE_API#Using_.27pvesh.27_to_access_the_API) at the [Proxmox wiki]. |
123 |
| - |
124 |
| -**How does the Proxmox API works?** |
125 |
| - |
126 |
| -Consult the [ProxmoxVE API] article at the [Proxmox wiki]. |
127 |
| - |
128 |
| -**I feel you're hiding some cool tricks! I need more docs!** |
129 |
| - |
130 |
| -See the project's [wiki](https://github.com/ZzAntares/ProxmoxVE/wiki) for a more |
131 |
| -detailed documentation, it's all in there I swear it... I think. |
132 |
| - |
| 4 | +Forked from [https://github.com/ZzAntares/ProxmoxVE](ZzAntares) |
133 | 5 |
|
134 | 6 | License
|
135 | 7 | -------
|
|
0 commit comments