├── .github └── workflows │ ├── ci.yml │ ├── publish.yml │ └── security.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── inlinecss.py ├── poetry.lock ├── pylintrc ├── pyproject.toml ├── pytest.ini ├── simple_ado ├── __init__.py ├── audit.py ├── auth │ ├── __init__.py │ ├── ado_auth.py │ ├── ado_basic_auth.py │ └── ado_token_auth.py ├── base_client.py ├── builds.py ├── comments.py ├── endpoints.py ├── exceptions.py ├── git.py ├── governance.py ├── graph.py ├── http_client.py ├── identities.py ├── models │ ├── __init__.py │ ├── audit.py │ ├── operations.py │ └── property.py ├── pipelines.py ├── pools.py ├── pull_requests.py ├── py.typed ├── security.py ├── types.py ├── user.py ├── utilities.py ├── wiki.py └── workitems.py ├── stylecheck.sh ├── test.sh └── tests ├── README.md ├── conftest.py ├── fixtures ├── builds_list.json └── git_refs.json ├── integration ├── __init__.py └── test_integration.py └── unit ├── __init__.py ├── test_builds.py └── test_client.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/.github/workflows/security.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/SECURITY.md -------------------------------------------------------------------------------- /inlinecss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/inlinecss.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/poetry.lock -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/pylintrc -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/pytest.ini -------------------------------------------------------------------------------- /simple_ado/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/__init__.py -------------------------------------------------------------------------------- /simple_ado/audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/audit.py -------------------------------------------------------------------------------- /simple_ado/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/auth/__init__.py -------------------------------------------------------------------------------- /simple_ado/auth/ado_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/auth/ado_auth.py -------------------------------------------------------------------------------- /simple_ado/auth/ado_basic_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/auth/ado_basic_auth.py -------------------------------------------------------------------------------- /simple_ado/auth/ado_token_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/auth/ado_token_auth.py -------------------------------------------------------------------------------- /simple_ado/base_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/base_client.py -------------------------------------------------------------------------------- /simple_ado/builds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/builds.py -------------------------------------------------------------------------------- /simple_ado/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/comments.py -------------------------------------------------------------------------------- /simple_ado/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/endpoints.py -------------------------------------------------------------------------------- /simple_ado/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/exceptions.py -------------------------------------------------------------------------------- /simple_ado/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/git.py -------------------------------------------------------------------------------- /simple_ado/governance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/governance.py -------------------------------------------------------------------------------- /simple_ado/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/graph.py -------------------------------------------------------------------------------- /simple_ado/http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/http_client.py -------------------------------------------------------------------------------- /simple_ado/identities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/identities.py -------------------------------------------------------------------------------- /simple_ado/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/models/__init__.py -------------------------------------------------------------------------------- /simple_ado/models/audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/models/audit.py -------------------------------------------------------------------------------- /simple_ado/models/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/models/operations.py -------------------------------------------------------------------------------- /simple_ado/models/property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/models/property.py -------------------------------------------------------------------------------- /simple_ado/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/pipelines.py -------------------------------------------------------------------------------- /simple_ado/pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/pools.py -------------------------------------------------------------------------------- /simple_ado/pull_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/pull_requests.py -------------------------------------------------------------------------------- /simple_ado/py.typed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simple_ado/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/security.py -------------------------------------------------------------------------------- /simple_ado/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/types.py -------------------------------------------------------------------------------- /simple_ado/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/user.py -------------------------------------------------------------------------------- /simple_ado/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/utilities.py -------------------------------------------------------------------------------- /simple_ado/wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/wiki.py -------------------------------------------------------------------------------- /simple_ado/workitems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/simple_ado/workitems.py -------------------------------------------------------------------------------- /stylecheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/stylecheck.sh -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/test.sh -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/fixtures/builds_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/tests/fixtures/builds_list.json -------------------------------------------------------------------------------- /tests/fixtures/git_refs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/tests/fixtures/git_refs.json -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/tests/integration/test_integration.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_builds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/tests/unit/test_builds.py -------------------------------------------------------------------------------- /tests/unit/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/simple_ado/HEAD/tests/unit/test_client.py --------------------------------------------------------------------------------