ReSync initial commit

ReSync initial commit
This commit is contained in:
DanHP 2015-03-23 13:11:05 -05:00
parent 369ab9f626
commit 79352bdfb1
5 changed files with 1531 additions and 2 deletions

4
.gitignore vendored
View File

@ -13,6 +13,7 @@ develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
@ -36,6 +37,7 @@ pip-delete-this-directory.txt
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
@ -51,4 +53,4 @@ coverage.xml
docs/_build/
# PyBuilder
target/
target/

View File

@ -1,2 +1,9 @@
# python-proliant-sdk
Python library for ProLiant RESTful API
This repository will be used to house the Python ProLiant SDK. This SDK will be used to help Python developers communicate with the [HP ProLiant REST API](http://hp.com/go/restfulapi).
## Directory Structure
- **docs** - Links to documents discussing the HP RESTful API
- **samples** - Examples of routine server maintenance using the HP RESTful API
## Requirements
To use the enclosed examples, you will need [Python 2.7](https://www.python.org/downloads/), and a ProLiant server running iLO 4 with network access to the iLO network port. Note that Python 2.7.9 enforces greater SSL verification requiring server certificates be installed. Parameters to relax the requirements are available in the sample scripts, but these configurations are discouraged due to security concerns.

View File

@ -0,0 +1,2 @@
# Managing HP Servers Using the HP RESTful API for iLO
The overall protocol documentation can be found [here](http://h20564.www2.hp.com/hpsc/doc/public/display?docId=c04423967 "Managing HP Servers Using the HP RESTful API for iLO").

View File

@ -0,0 +1,2 @@
# iLO 4 REST API Data Model
The data model documentation can be found [here](http://h20564.www2.hp.com/hpsc/doc/public/display?docId=c04423960 "HP RESTful API Data Model Reference for iLO 4").

File diff suppressed because it is too large Load Diff