├── .gitignore ├── LICENSE ├── README.md ├── README_cn.md ├── exmaples ├── ci.py └── cr.py ├── pyproject.toml ├── src └── cmdb │ ├── __init__.py │ ├── client.py │ └── core │ ├── __init__.py │ ├── auth.py │ ├── ci.py │ ├── ci_relations.py │ ├── exc.py │ ├── models.py │ └── policy.py └── tests ├── test_ci.py └── test_cr.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veops/cmdb-sdk-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veops/cmdb-sdk-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veops/cmdb-sdk-python/HEAD/README.md -------------------------------------------------------------------------------- /README_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veops/cmdb-sdk-python/HEAD/README_cn.md -------------------------------------------------------------------------------- /exmaples/ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veops/cmdb-sdk-python/HEAD/exmaples/ci.py -------------------------------------------------------------------------------- /exmaples/cr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veops/cmdb-sdk-python/HEAD/exmaples/cr.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veops/cmdb-sdk-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/cmdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veops/cmdb-sdk-python/HEAD/src/cmdb/__init__.py -------------------------------------------------------------------------------- /src/cmdb/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veops/cmdb-sdk-python/HEAD/src/cmdb/client.py -------------------------------------------------------------------------------- /src/cmdb/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cmdb/core/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veops/cmdb-sdk-python/HEAD/src/cmdb/core/auth.py -------------------------------------------------------------------------------- /src/cmdb/core/ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veops/cmdb-sdk-python/HEAD/src/cmdb/core/ci.py -------------------------------------------------------------------------------- /src/cmdb/core/ci_relations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veops/cmdb-sdk-python/HEAD/src/cmdb/core/ci_relations.py -------------------------------------------------------------------------------- /src/cmdb/core/exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veops/cmdb-sdk-python/HEAD/src/cmdb/core/exc.py -------------------------------------------------------------------------------- /src/cmdb/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veops/cmdb-sdk-python/HEAD/src/cmdb/core/models.py -------------------------------------------------------------------------------- /src/cmdb/core/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veops/cmdb-sdk-python/HEAD/src/cmdb/core/policy.py -------------------------------------------------------------------------------- /tests/test_ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veops/cmdb-sdk-python/HEAD/tests/test_ci.py -------------------------------------------------------------------------------- /tests/test_cr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veops/cmdb-sdk-python/HEAD/tests/test_cr.py --------------------------------------------------------------------------------