├── .coveragerc ├── .gitignore ├── .gitreview ├── .mailmap ├── .pylintrc ├── .stestr.conf ├── CONTRIBUTING.rst ├── HACKING.rst ├── LICENSE ├── README.rst ├── bindep.txt ├── doc ├── requirements.txt └── source │ ├── cli │ └── index.rst │ ├── conf.py │ ├── contributor │ └── index.rst │ ├── index.rst │ ├── install │ └── index.rst │ ├── readme.rst │ └── reference │ ├── data │ └── lbaas.csv │ └── index.rst ├── octaviaclient ├── __init__.py ├── api │ ├── __init__.py │ ├── constants.py │ ├── exceptions.py │ └── v2 │ │ ├── __init__.py │ │ └── octavia.py ├── hacking │ ├── __init__.py │ └── checks.py ├── osc │ ├── __init__.py │ ├── plugin.py │ └── v2 │ │ ├── __init__.py │ │ ├── amphora.py │ │ ├── availabilityzone.py │ │ ├── availabilityzoneprofile.py │ │ ├── constants.py │ │ ├── flavor.py │ │ ├── flavorprofile.py │ │ ├── health_monitor.py │ │ ├── l7policy.py │ │ ├── l7rule.py │ │ ├── listener.py │ │ ├── load_balancer.py │ │ ├── member.py │ │ ├── pool.py │ │ ├── provider.py │ │ ├── quota.py │ │ ├── utils.py │ │ └── validate.py ├── tests │ ├── __init__.py │ ├── fakes.py │ ├── functional │ │ ├── __init__.py │ │ ├── base.py │ │ └── osc │ │ │ ├── __init__.py │ │ │ └── v2 │ │ │ └── __init__.py │ └── unit │ │ ├── __init__.py │ │ ├── api │ │ ├── __init__.py │ │ └── test_octavia.py │ │ ├── osc │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ ├── fakes.py │ │ │ ├── test_amphora.py │ │ │ ├── test_availabilityzone.py │ │ │ ├── test_availabilityzoneprofile.py │ │ │ ├── test_flavor.py │ │ │ ├── test_flavorprofile.py │ │ │ ├── test_health_monitor.py │ │ │ ├── test_l7policy.py │ │ │ ├── test_l7rule.py │ │ │ ├── test_listener.py │ │ │ ├── test_load_balancer.py │ │ │ ├── test_member.py │ │ │ ├── test_pool.py │ │ │ ├── test_provider.py │ │ │ ├── test_quota.py │ │ │ └── test_validations.py │ │ └── test_hacking.py └── version.py ├── releasenotes ├── notes │ ├── .placeholder │ ├── Add-PROMETHEUS-listener-protocol-23f5054f524d9332.yaml │ ├── Add-SR-IOV-support-for-members-5ed7f7877b17fb2a.yaml │ ├── Add-proxyv2-7a540796c60241c3.yaml │ ├── Add-support-for-UDP-5476caa65b1253a6.yaml │ ├── Add-unset-commands-15490df414a70df0.yaml │ ├── Add-vip_vnic_type-load-balancer-field-f1bc1345ee741f88.yaml │ ├── Client-to-request-JSON-responses-8d942dafca785c70.yaml │ ├── Improve-client-performance-when-using-a-name-instead-of-ID-51a6637050386a90.yaml │ ├── add-ability-set-listener-cipher-list-fe379d0d0821ed42.yaml │ ├── add-ability-set-pool-cipher-list-70128f983506fbdb.yaml │ ├── add-alpn-support-listeners-6508704b5c8944d2.yaml │ ├── add-amphora-configure-command-cda75053a72c0cdf.yaml │ ├── add-amphora-delete-0fe5f2097da92b5c.yaml │ ├── add-amphora-stats-show-48bc0fadf08f1057.yaml │ ├── add-amphorae-failover-suuport-9fa0b1c25026e123.yaml │ ├── add-az-and-profiles-ed79c945c4e0d418.yaml │ ├── add-flavor-support-75c6d5bec48b1d18.yaml │ ├── add-hsts-support-f612ec171e28a3b3.yaml │ ├── add-l7policy-and-l7rule-quota-support-73098a090b252901.yaml │ ├── add-lb-algorithm-source-ip-port-3e2d4b60f6916259.yaml │ ├── add-lb-flavor-b917faa0298c3a74.yaml │ ├── add-listener-allowed-cirds-2ef9fa2e1c650166.yaml │ ├── add-missing-flavor-set-description-option-d49f3103ef15e778.yaml │ ├── add-new-commands-and-options-d520b36d870cbcb4.yaml │ ├── add-pool-tls-alpn-support-59758ea78c78952e.yaml │ ├── add-provider-load-balancer-create-4d151209dee32f81.yaml │ ├── add-qos-policy-argument-1741126d759630da.yaml │ ├── add-quota-support-effed2cf2a8c7ad4.yaml │ ├── add-redirect-prefix-2f66455b3eacf5b6.yaml │ ├── add-support-for-provider-4e60045ea54f1d30.yaml │ ├── add-support-for-sctp-protocol-f23b58db8522cc4b.yaml │ ├── add-tag-support-01087c4b3c4360dc.yaml │ ├── add-tls-version-support-for-listeners-4a6a661af5f9de9a.yaml │ ├── add-tls-version-support-to-pools-852f02b034f436f9.yaml │ ├── add-tls-versions-ciphers-unsets-8d06a502c8ad38ff.yaml │ ├── add-vip-sg-id-22691a95cc8b3fc7.yaml │ ├── add-wait-option-to-CUD-commands-97375387e7762b83.yaml │ ├── add_backup_member_support-8b406bb72654ba88.yaml │ ├── add_loadbalancer_status_support-f960d89f1b77fd16.yaml │ ├── added-FAILOVER_STOPPED-status-to-amphora-status-filter-ec3517a363ac2654.yaml │ ├── amphora-list-filter-image-id-d746623c18af1f26.yaml │ ├── amphora-list-long-option-55390b5abef5b82e.yaml │ ├── drop-python-2-7-7b427838d72ef248.yaml │ ├── drop-python-3-6-and-3-7-5675086892fe7d16.yaml │ ├── exposed-timeouts-eb29f55de5e56261.yaml │ ├── fix-cli-pagination-792ad8cd386eb0e7.yaml │ ├── fix-delete-az-message-9caf48f7c685d80e.yaml │ ├── fix-inconsistent-parameter-name-in-azp-0267d025b7c78fc2.yaml │ ├── fix-l7rule-create-wait-1f087c17a82eedeb.yaml │ ├── fix-pool-protocols-090b2a6f4e82516f.yaml │ ├── improve-error-messages-for-invalid-calls-bc9eb3d18d3e4fdf.yaml │ ├── initial-list-command-90c9fa39fc10540e.yaml │ ├── list-l7policies-by-listener-a11322c8e03a11e9.yaml │ ├── listener-stats-db49f99a8a0dd90f.yaml │ ├── load-balancer-commands-options-83cfdbb1bc5d8998.yaml │ ├── remove-py38-43d418a45c0752ac.yaml │ ├── remove-py39-18d9fc827db08abc.yaml │ ├── remove-unneeded-attributes-in-listener-create-2e7cb2de281ac7fe.yaml │ ├── show-command-enhancement-df414a70df0a7089.yml │ └── support-additional-vips-cd0164f1838ee676.yaml └── source │ ├── 2023.1.rst │ ├── 2023.2.rst │ ├── 2024.1.rst │ ├── 2024.2.rst │ ├── 2025.1.rst │ ├── 2025.2.rst │ ├── _static │ └── .placeholder │ ├── _templates │ └── .placeholder │ ├── conf.py │ ├── index.rst │ ├── pike.rst │ ├── queens.rst │ ├── rocky.rst │ ├── stein.rst │ ├── train.rst │ ├── unreleased.rst │ ├── ussuri.rst │ ├── victoria.rst │ ├── wallaby.rst │ ├── xena.rst │ ├── yoga.rst │ └── zed.rst ├── requirements.txt ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── tools └── coding-checks.sh ├── tox.ini └── zuul.d └── projects.yaml /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/.gitreview -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/.mailmap -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/.pylintrc -------------------------------------------------------------------------------- /.stestr.conf: -------------------------------------------------------------------------------- 1 | [DEFAULT] 2 | test_path=${OS_TEST_PATH:-./octaviaclient/tests/} 3 | top_dir=./ 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HACKING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/HACKING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/README.rst -------------------------------------------------------------------------------- /bindep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/bindep.txt -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/source/cli/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/doc/source/cli/index.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/contributor/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/doc/source/contributor/index.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/install/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/doc/source/install/index.rst -------------------------------------------------------------------------------- /doc/source/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/doc/source/readme.rst -------------------------------------------------------------------------------- /doc/source/reference/data/lbaas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/doc/source/reference/data/lbaas.csv -------------------------------------------------------------------------------- /doc/source/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/doc/source/reference/index.rst -------------------------------------------------------------------------------- /octaviaclient/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/__init__.py -------------------------------------------------------------------------------- /octaviaclient/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /octaviaclient/api/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/api/constants.py -------------------------------------------------------------------------------- /octaviaclient/api/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/api/exceptions.py -------------------------------------------------------------------------------- /octaviaclient/api/v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /octaviaclient/api/v2/octavia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/api/v2/octavia.py -------------------------------------------------------------------------------- /octaviaclient/hacking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /octaviaclient/hacking/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/hacking/checks.py -------------------------------------------------------------------------------- /octaviaclient/osc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /octaviaclient/osc/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/osc/plugin.py -------------------------------------------------------------------------------- /octaviaclient/osc/v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /octaviaclient/osc/v2/amphora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/osc/v2/amphora.py -------------------------------------------------------------------------------- /octaviaclient/osc/v2/availabilityzone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/osc/v2/availabilityzone.py -------------------------------------------------------------------------------- /octaviaclient/osc/v2/availabilityzoneprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/osc/v2/availabilityzoneprofile.py -------------------------------------------------------------------------------- /octaviaclient/osc/v2/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/osc/v2/constants.py -------------------------------------------------------------------------------- /octaviaclient/osc/v2/flavor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/osc/v2/flavor.py -------------------------------------------------------------------------------- /octaviaclient/osc/v2/flavorprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/osc/v2/flavorprofile.py -------------------------------------------------------------------------------- /octaviaclient/osc/v2/health_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/osc/v2/health_monitor.py -------------------------------------------------------------------------------- /octaviaclient/osc/v2/l7policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/osc/v2/l7policy.py -------------------------------------------------------------------------------- /octaviaclient/osc/v2/l7rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/osc/v2/l7rule.py -------------------------------------------------------------------------------- /octaviaclient/osc/v2/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/osc/v2/listener.py -------------------------------------------------------------------------------- /octaviaclient/osc/v2/load_balancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/osc/v2/load_balancer.py -------------------------------------------------------------------------------- /octaviaclient/osc/v2/member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/osc/v2/member.py -------------------------------------------------------------------------------- /octaviaclient/osc/v2/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/osc/v2/pool.py -------------------------------------------------------------------------------- /octaviaclient/osc/v2/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/osc/v2/provider.py -------------------------------------------------------------------------------- /octaviaclient/osc/v2/quota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/osc/v2/quota.py -------------------------------------------------------------------------------- /octaviaclient/osc/v2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/osc/v2/utils.py -------------------------------------------------------------------------------- /octaviaclient/osc/v2/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/osc/v2/validate.py -------------------------------------------------------------------------------- /octaviaclient/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /octaviaclient/tests/fakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/fakes.py -------------------------------------------------------------------------------- /octaviaclient/tests/functional/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /octaviaclient/tests/functional/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/functional/base.py -------------------------------------------------------------------------------- /octaviaclient/tests/functional/osc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /octaviaclient/tests/functional/osc/v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /octaviaclient/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /octaviaclient/tests/unit/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /octaviaclient/tests/unit/api/test_octavia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/api/test_octavia.py -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/v2/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/osc/v2/constants.py -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/v2/fakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/osc/v2/fakes.py -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/v2/test_amphora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/osc/v2/test_amphora.py -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/v2/test_availabilityzone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/osc/v2/test_availabilityzone.py -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/v2/test_availabilityzoneprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/osc/v2/test_availabilityzoneprofile.py -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/v2/test_flavor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/osc/v2/test_flavor.py -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/v2/test_flavorprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/osc/v2/test_flavorprofile.py -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/v2/test_health_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/osc/v2/test_health_monitor.py -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/v2/test_l7policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/osc/v2/test_l7policy.py -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/v2/test_l7rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/osc/v2/test_l7rule.py -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/v2/test_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/osc/v2/test_listener.py -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/v2/test_load_balancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/osc/v2/test_load_balancer.py -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/v2/test_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/osc/v2/test_member.py -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/v2/test_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/osc/v2/test_pool.py -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/v2/test_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/osc/v2/test_provider.py -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/v2/test_quota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/osc/v2/test_quota.py -------------------------------------------------------------------------------- /octaviaclient/tests/unit/osc/v2/test_validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/osc/v2/test_validations.py -------------------------------------------------------------------------------- /octaviaclient/tests/unit/test_hacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/tests/unit/test_hacking.py -------------------------------------------------------------------------------- /octaviaclient/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/octaviaclient/version.py -------------------------------------------------------------------------------- /releasenotes/notes/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/notes/Add-PROMETHEUS-listener-protocol-23f5054f524d9332.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Added support for the PROMETHEUS listener protocol. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/Add-SR-IOV-support-for-members-5ed7f7877b17fb2a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/Add-SR-IOV-support-for-members-5ed7f7877b17fb2a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/Add-proxyv2-7a540796c60241c3.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Added support for the PROXYV2 protocol. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/Add-support-for-UDP-5476caa65b1253a6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/Add-support-for-UDP-5476caa65b1253a6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/Add-unset-commands-15490df414a70df0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/Add-unset-commands-15490df414a70df0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/Add-vip_vnic_type-load-balancer-field-f1bc1345ee741f88.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/Add-vip_vnic_type-load-balancer-field-f1bc1345ee741f88.yaml -------------------------------------------------------------------------------- /releasenotes/notes/Client-to-request-JSON-responses-8d942dafca785c70.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/Client-to-request-JSON-responses-8d942dafca785c70.yaml -------------------------------------------------------------------------------- /releasenotes/notes/Improve-client-performance-when-using-a-name-instead-of-ID-51a6637050386a90.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/Improve-client-performance-when-using-a-name-instead-of-ID-51a6637050386a90.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-ability-set-listener-cipher-list-fe379d0d0821ed42.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-ability-set-listener-cipher-list-fe379d0d0821ed42.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-ability-set-pool-cipher-list-70128f983506fbdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-ability-set-pool-cipher-list-70128f983506fbdb.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-alpn-support-listeners-6508704b5c8944d2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-alpn-support-listeners-6508704b5c8944d2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-amphora-configure-command-cda75053a72c0cdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-amphora-configure-command-cda75053a72c0cdf.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-amphora-delete-0fe5f2097da92b5c.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Added the amphora delete command. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/add-amphora-stats-show-48bc0fadf08f1057.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-amphora-stats-show-48bc0fadf08f1057.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-amphorae-failover-suuport-9fa0b1c25026e123.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-amphorae-failover-suuport-9fa0b1c25026e123.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-az-and-profiles-ed79c945c4e0d418.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-az-and-profiles-ed79c945c4e0d418.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-flavor-support-75c6d5bec48b1d18.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-flavor-support-75c6d5bec48b1d18.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-hsts-support-f612ec171e28a3b3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-hsts-support-f612ec171e28a3b3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-l7policy-and-l7rule-quota-support-73098a090b252901.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-l7policy-and-l7rule-quota-support-73098a090b252901.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-lb-algorithm-source-ip-port-3e2d4b60f6916259.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Adds client support for SOURCE_IP_PORT algorithm. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/add-lb-flavor-b917faa0298c3a74.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-lb-flavor-b917faa0298c3a74.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-listener-allowed-cirds-2ef9fa2e1c650166.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Added support to VIP access control list. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-missing-flavor-set-description-option-d49f3103ef15e778.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-missing-flavor-set-description-option-d49f3103ef15e778.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-new-commands-and-options-d520b36d870cbcb4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-new-commands-and-options-d520b36d870cbcb4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-pool-tls-alpn-support-59758ea78c78952e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-pool-tls-alpn-support-59758ea78c78952e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-provider-load-balancer-create-4d151209dee32f81.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-provider-load-balancer-create-4d151209dee32f81.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-qos-policy-argument-1741126d759630da.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-qos-policy-argument-1741126d759630da.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-quota-support-effed2cf2a8c7ad4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-quota-support-effed2cf2a8c7ad4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-redirect-prefix-2f66455b3eacf5b6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-redirect-prefix-2f66455b3eacf5b6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-support-for-provider-4e60045ea54f1d30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-support-for-provider-4e60045ea54f1d30.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-support-for-sctp-protocol-f23b58db8522cc4b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-support-for-sctp-protocol-f23b58db8522cc4b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-tag-support-01087c4b3c4360dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-tag-support-01087c4b3c4360dc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-tls-version-support-for-listeners-4a6a661af5f9de9a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-tls-version-support-for-listeners-4a6a661af5f9de9a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-tls-version-support-to-pools-852f02b034f436f9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-tls-version-support-to-pools-852f02b034f436f9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-tls-versions-ciphers-unsets-8d06a502c8ad38ff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-tls-versions-ciphers-unsets-8d06a502c8ad38ff.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-vip-sg-id-22691a95cc8b3fc7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-vip-sg-id-22691a95cc8b3fc7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-wait-option-to-CUD-commands-97375387e7762b83.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add-wait-option-to-CUD-commands-97375387e7762b83.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_backup_member_support-8b406bb72654ba88.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add_backup_member_support-8b406bb72654ba88.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_loadbalancer_status_support-f960d89f1b77fd16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/add_loadbalancer_status_support-f960d89f1b77fd16.yaml -------------------------------------------------------------------------------- /releasenotes/notes/added-FAILOVER_STOPPED-status-to-amphora-status-filter-ec3517a363ac2654.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/added-FAILOVER_STOPPED-status-to-amphora-status-filter-ec3517a363ac2654.yaml -------------------------------------------------------------------------------- /releasenotes/notes/amphora-list-filter-image-id-d746623c18af1f26.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/amphora-list-filter-image-id-d746623c18af1f26.yaml -------------------------------------------------------------------------------- /releasenotes/notes/amphora-list-long-option-55390b5abef5b82e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/amphora-list-long-option-55390b5abef5b82e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-python-2-7-7b427838d72ef248.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/drop-python-2-7-7b427838d72ef248.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-python-3-6-and-3-7-5675086892fe7d16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/drop-python-3-6-and-3-7-5675086892fe7d16.yaml -------------------------------------------------------------------------------- /releasenotes/notes/exposed-timeouts-eb29f55de5e56261.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/exposed-timeouts-eb29f55de5e56261.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-cli-pagination-792ad8cd386eb0e7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/fix-cli-pagination-792ad8cd386eb0e7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-delete-az-message-9caf48f7c685d80e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/fix-delete-az-message-9caf48f7c685d80e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-inconsistent-parameter-name-in-azp-0267d025b7c78fc2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/fix-inconsistent-parameter-name-in-azp-0267d025b7c78fc2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-l7rule-create-wait-1f087c17a82eedeb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/fix-l7rule-create-wait-1f087c17a82eedeb.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-pool-protocols-090b2a6f4e82516f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/fix-pool-protocols-090b2a6f4e82516f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/improve-error-messages-for-invalid-calls-bc9eb3d18d3e4fdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/improve-error-messages-for-invalid-calls-bc9eb3d18d3e4fdf.yaml -------------------------------------------------------------------------------- /releasenotes/notes/initial-list-command-90c9fa39fc10540e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/initial-list-command-90c9fa39fc10540e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/list-l7policies-by-listener-a11322c8e03a11e9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/list-l7policies-by-listener-a11322c8e03a11e9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/listener-stats-db49f99a8a0dd90f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/listener-stats-db49f99a8a0dd90f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/load-balancer-commands-options-83cfdbb1bc5d8998.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/load-balancer-commands-options-83cfdbb1bc5d8998.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-py38-43d418a45c0752ac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/remove-py38-43d418a45c0752ac.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-py39-18d9fc827db08abc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/remove-py39-18d9fc827db08abc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-unneeded-attributes-in-listener-create-2e7cb2de281ac7fe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/remove-unneeded-attributes-in-listener-create-2e7cb2de281ac7fe.yaml -------------------------------------------------------------------------------- /releasenotes/notes/show-command-enhancement-df414a70df0a7089.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/show-command-enhancement-df414a70df0a7089.yml -------------------------------------------------------------------------------- /releasenotes/notes/support-additional-vips-cd0164f1838ee676.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/notes/support-additional-vips-cd0164f1838ee676.yaml -------------------------------------------------------------------------------- /releasenotes/source/2023.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/2023.1.rst -------------------------------------------------------------------------------- /releasenotes/source/2023.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/2023.2.rst -------------------------------------------------------------------------------- /releasenotes/source/2024.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/2024.1.rst -------------------------------------------------------------------------------- /releasenotes/source/2024.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/2024.2.rst -------------------------------------------------------------------------------- /releasenotes/source/2025.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/2025.1.rst -------------------------------------------------------------------------------- /releasenotes/source/2025.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/2025.2.rst -------------------------------------------------------------------------------- /releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/source/_templates/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/conf.py -------------------------------------------------------------------------------- /releasenotes/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/index.rst -------------------------------------------------------------------------------- /releasenotes/source/pike.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/pike.rst -------------------------------------------------------------------------------- /releasenotes/source/queens.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/queens.rst -------------------------------------------------------------------------------- /releasenotes/source/rocky.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/rocky.rst -------------------------------------------------------------------------------- /releasenotes/source/stein.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/stein.rst -------------------------------------------------------------------------------- /releasenotes/source/train.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/train.rst -------------------------------------------------------------------------------- /releasenotes/source/unreleased.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/unreleased.rst -------------------------------------------------------------------------------- /releasenotes/source/ussuri.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/ussuri.rst -------------------------------------------------------------------------------- /releasenotes/source/victoria.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/victoria.rst -------------------------------------------------------------------------------- /releasenotes/source/wallaby.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/wallaby.rst -------------------------------------------------------------------------------- /releasenotes/source/xena.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/xena.rst -------------------------------------------------------------------------------- /releasenotes/source/yoga.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/yoga.rst -------------------------------------------------------------------------------- /releasenotes/source/zed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/releasenotes/source/zed.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tools/coding-checks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/tools/coding-checks.sh -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/tox.ini -------------------------------------------------------------------------------- /zuul.d/projects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/python-octaviaclient/HEAD/zuul.d/projects.yaml --------------------------------------------------------------------------------