├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── bin ├── __init__.py ├── akamai-cps ├── cps.py ├── cpsApiWrapper.py ├── headers.py └── templates │ ├── template_dv_san.yml │ ├── template_dv_san_sni.yml │ ├── template_ov_san.yml │ ├── template_ov_san_sni.yml │ ├── template_third_party.yml │ └── template_third_party_sni.yml ├── ci ├── Dockerfile └── test_with_docker.sh ├── cli.json ├── dev-requirements.txt ├── requirements.txt ├── tests ├── __init__.py ├── cli-cps │ ├── __init__.py │ └── test_cpsApiWrapper.py └── conftest.py └── tox.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/README.md -------------------------------------------------------------------------------- /bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/akamai-cps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/bin/akamai-cps -------------------------------------------------------------------------------- /bin/cps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/bin/cps.py -------------------------------------------------------------------------------- /bin/cpsApiWrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/bin/cpsApiWrapper.py -------------------------------------------------------------------------------- /bin/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/bin/headers.py -------------------------------------------------------------------------------- /bin/templates/template_dv_san.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/bin/templates/template_dv_san.yml -------------------------------------------------------------------------------- /bin/templates/template_dv_san_sni.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/bin/templates/template_dv_san_sni.yml -------------------------------------------------------------------------------- /bin/templates/template_ov_san.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/bin/templates/template_ov_san.yml -------------------------------------------------------------------------------- /bin/templates/template_ov_san_sni.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/bin/templates/template_ov_san_sni.yml -------------------------------------------------------------------------------- /bin/templates/template_third_party.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/bin/templates/template_third_party.yml -------------------------------------------------------------------------------- /bin/templates/template_third_party_sni.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/bin/templates/template_third_party_sni.yml -------------------------------------------------------------------------------- /ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/ci/Dockerfile -------------------------------------------------------------------------------- /ci/test_with_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/ci/test_with_docker.sh -------------------------------------------------------------------------------- /cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/cli.json -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cli-cps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cli-cps/test_cpsApiWrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/tests/cli-cps/test_cpsApiWrapper.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tox.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/cli-cps/HEAD/tox.toml --------------------------------------------------------------------------------