Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
allburov committed Oct 2, 2018
0 parents commit a954b9e
Show file tree
Hide file tree
Showing 415 changed files with 114,423 additions and 0 deletions.
65 changes: 65 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so
*.jar

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/
venv/
.python-version

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/

#Ipython Notebook
.ipynb_checkpoints
23 changes: 23 additions & 0 deletions .swagger-codegen-ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Swagger Codegen Ignore
# Generated by swagger-codegen https://github.com/swagger-api/swagger-codegen

# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.

# As an example, the C# client generator defines ApiClient.cs.
# You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line:
#ApiClient.cs

# You can match any string of characters against a directory, file or extension with a single asterisk (*):
#foo/*/qux
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux

# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
#foo/**/qux
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux

# You can also negate patterns with an exclamation (!).
# For example, you can ignore all files in a docs folder with the file extension .md:
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md
1 change: 1 addition & 0 deletions .swagger-codegen/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.4.0-SNAPSHOT
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# ref: https://docs.travis-ci.com/user/languages/python
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
#- "3.5-dev" # 3.5 development branch
#- "nightly" # points to the latest development branch e.g. 3.6-dev
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script: nosetests
591 changes: 591 additions & 0 deletions README.md

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions docs/Agent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Agent

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**authorized** | **bool** | | [optional] [default to False]
**authorized_info** | [**AuthorizedInfo**](AuthorizedInfo.md) | | [optional]
**compatible_build_types** | [**BuildTypes**](BuildTypes.md) | | [optional]
**connected** | **bool** | | [optional] [default to False]
**enabled** | **bool** | | [optional] [default to False]
**enabled_info** | [**EnabledInfo**](EnabledInfo.md) | | [optional]
**href** | **str** | | [optional]
**id** | **int** | | [optional]
**incompatible_build_types** | [**Compatibilities**](Compatibilities.md) | | [optional]
**ip** | **str** | | [optional]
**locator** | **str** | | [optional]
**name** | **str** | | [optional]
**pool** | [**AgentPool**](AgentPool.md) | | [optional]
**properties** | [**Properties**](Properties.md) | | [optional]
**protocol** | **str** | | [optional]
**type_id** | **int** | | [optional]
**uptodate** | **bool** | | [optional] [default to False]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


Loading

0 comments on commit a954b9e

Please sign in to comment.