osc-lib 3.2.0__tar.gz → 4.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {osc-lib-3.2.0 → osc_lib-4.0.0}/.pre-commit-config.yaml +17 -2
- {osc-lib-3.2.0 → osc_lib-4.0.0}/ChangeLog +29 -0
- osc_lib-4.0.0/PKG-INFO +94 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/api/api.py +63 -27
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/api/auth.py +36 -21
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/api/utils.py +10 -5
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/cli/client_config.py +51 -32
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/cli/format_columns.py +19 -17
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/cli/identity.py +14 -3
- osc_lib-4.0.0/osc_lib/cli/pagination.py +83 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/cli/parseractions.py +99 -20
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/clientmanager.py +45 -24
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/command/command.py +19 -8
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/command/timing.py +11 -1
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/exceptions.py +12 -2
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/logs.py +18 -8
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/shell.py +64 -44
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/tests/test_shell.py +4 -4
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/tests/utils/__init__.py +0 -19
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/tests/utils/test_tags.py +22 -7
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/tests/utils/test_utils.py +1 -11
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/utils/__init__.py +180 -108
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/utils/columns.py +15 -4
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/utils/tags.py +39 -21
- osc_lib-4.0.0/osc_lib.egg-info/PKG-INFO +94 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib.egg-info/SOURCES.txt +8 -1
- osc_lib-4.0.0/osc_lib.egg-info/pbr.json +1 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib.egg-info/requires.txt +2 -2
- osc_lib-4.0.0/pyproject.toml +45 -0
- osc_lib-4.0.0/releasenotes/notes/deprecate-BaseAPI-09abd3cb955c2bb6.yaml +6 -0
- osc_lib-4.0.0/releasenotes/notes/deprecate-clientcache-38c8c9fd4ca6dcdf.yaml +4 -0
- osc_lib-4.0.0/releasenotes/notes/deprecated-legacy-client-helpers-53dde79bd6769d2d.yaml +7 -0
- osc_lib-4.0.0/releasenotes/notes/env-default-e8f2c60f1295d15f.yaml +5 -0
- osc_lib-4.0.0/releasenotes/notes/remove-support-for-legacy-formatters-1240317d801b4336.yaml +8 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/2023.1.rst +1 -1
- osc_lib-4.0.0/releasenotes/source/2025.1.rst +6 -0
- osc_lib-4.0.0/releasenotes/source/_templates/.placeholder +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/index.rst +1 -0
- osc_lib-4.0.0/requirements.txt +8 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/test-requirements.txt +0 -4
- osc-lib-3.2.0/PKG-INFO +0 -87
- osc-lib-3.2.0/doc/Makefile +0 -130
- osc-lib-3.2.0/osc_lib.egg-info/PKG-INFO +0 -87
- osc-lib-3.2.0/osc_lib.egg-info/pbr.json +0 -1
- osc-lib-3.2.0/pyproject.toml +0 -9
- osc-lib-3.2.0/requirements.txt +0 -12
- {osc-lib-3.2.0 → osc_lib-4.0.0}/.coveragerc +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/.git-ignore-blame-revs +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/.mailmap +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/.stestr.conf +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/.zuul.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/AUTHORS +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/HACKING.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/LICENSE +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/README.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/doc/ext/__init__.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/doc/ext/apidoc.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/doc/requirements.txt +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/doc/source/conf.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/doc/source/contributor/index.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/doc/source/index.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/doc/source/reference/index.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/doc/source/user/change_log.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/doc/source/user/index.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/doc/source/user/transition.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/__init__.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/api/__init__.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/cli/__init__.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/command/__init__.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/command/commandmanager.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/i18n.py +0 -0
- /osc-lib-3.2.0/osc_lib/tests/__init__.py → /osc_lib-4.0.0/osc_lib/py.typed +0 -0
- {osc-lib-3.2.0/osc_lib/tests/api → osc_lib-4.0.0/osc_lib/tests}/__init__.py +0 -0
- {osc-lib-3.2.0/osc_lib/tests/cli → osc_lib-4.0.0/osc_lib/tests/api}/__init__.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/tests/api/fakes.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/tests/api/test_api.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/tests/api/test_utils.py +0 -0
- {osc-lib-3.2.0/osc_lib/tests/command → osc_lib-4.0.0/osc_lib/tests/cli}/__init__.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/tests/cli/test_client_config.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/tests/cli/test_format_columns.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/tests/cli/test_identity.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/tests/cli/test_parseractions.py +0 -0
- /osc-lib-3.2.0/releasenotes/notes/.placeholder → /osc_lib-4.0.0/osc_lib/tests/command/__init__.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/tests/command/test_command.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/tests/command/test_timing.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/tests/fakes.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/tests/test_clientmanager.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/tests/test_logs.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/tests/utils/test_columns.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib/version.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib.egg-info/dependency_links.txt +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib.egg-info/not-zip-safe +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/osc_lib.egg-info/top_level.txt +0 -0
- {osc-lib-3.2.0/releasenotes/source/_static → osc_lib-4.0.0/releasenotes/notes}/.placeholder +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/1.0-summary-47dcce446d6a512b.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/add-KeyValueAppendAction-class-f830e71152d6b91e.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/add-MultiKeyValueCommaAction-class-01dd254a287d70d2.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/add-size-column-5424c40af74688df.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/add_sdk_utils-d0c338eba682f2c8.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/arg-precedence-1ba9fd6929650830.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/auth-type-none-d96760912605f822.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/bug-1558690-1528b637f2c0a449.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/bug-1630822-mask-password-on-debug-20dcdf1c54e84fa1.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/bug-2004898-686577a07e791051.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/bug-2006480-436489d39643e76c.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/direct-openstacksdk-535a179f3c645cc0.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/drop-py2-support-60c93244107d5778.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/find-project-203bf867619c557e.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/keystone-to-keystone-9b2e55b051775322.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/none-auth-cli-48ab0e48d4852941.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/os-profile-as-environment-variable-a5e232e9ca7c5171.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/remove-babel-50abc5b548455bb2.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/remove-group-subclass-82134e6915c7c782.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/save-results-4473cb5731c0c763.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/notes/shell-argv-decode-cdc13dc0c4ec07af.yaml +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/2023.2.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/2024.1.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/2024.2.rst +0 -0
- {osc-lib-3.2.0/releasenotes/source/_templates → osc_lib-4.0.0/releasenotes/source/_static}/.placeholder +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/conf.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/newton.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/ocata.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/pike.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/queens.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/rocky.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/stein.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/train.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/unreleased.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/ussuri.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/victoria.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/wallaby.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/xena.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/yoga.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/releasenotes/source/zed.rst +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/setup.cfg +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/setup.py +0 -0
- {osc-lib-3.2.0 → osc_lib-4.0.0}/tox.ini +0 -0
@@ -4,7 +4,7 @@ default_language_version:
|
|
4
4
|
python: python3
|
5
5
|
repos:
|
6
6
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
7
|
-
rev:
|
7
|
+
rev: v5.0.0
|
8
8
|
hooks:
|
9
9
|
- id: trailing-whitespace
|
10
10
|
- id: mixed-line-ending
|
@@ -22,7 +22,7 @@ repos:
|
|
22
22
|
hooks:
|
23
23
|
- id: doc8
|
24
24
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
25
|
-
rev: v0.6
|
25
|
+
rev: v0.9.6
|
26
26
|
hooks:
|
27
27
|
- id: ruff
|
28
28
|
args: ['--fix', '--unsafe-fixes']
|
@@ -34,3 +34,18 @@ repos:
|
|
34
34
|
additional_dependencies:
|
35
35
|
- flake8-import-order~=0.18.2
|
36
36
|
exclude: '^(doc|releasenotes|tools)/.*$'
|
37
|
+
- repo: https://github.com/pre-commit/mirrors-mypy
|
38
|
+
rev: v1.13.0
|
39
|
+
hooks:
|
40
|
+
- id: mypy
|
41
|
+
additional_dependencies:
|
42
|
+
- cliff
|
43
|
+
- keystoneauth1
|
44
|
+
- types-requests
|
45
|
+
# keep this in-sync with '[mypy] exclude' in 'setup.cfg'
|
46
|
+
exclude: |
|
47
|
+
(?x)(
|
48
|
+
doc/.*
|
49
|
+
| examples/.*
|
50
|
+
| releasenotes/.*
|
51
|
+
)
|
@@ -1,6 +1,35 @@
|
|
1
1
|
CHANGES
|
2
2
|
=======
|
3
3
|
|
4
|
+
4.0.0
|
5
|
+
-----
|
6
|
+
|
7
|
+
* typing: Enable disallow\_subclassing\_any
|
8
|
+
* tests: Resolve TODO
|
9
|
+
* utils: Deprecate legacy client-specific helpers
|
10
|
+
* utils: Remove support for legacy format functions
|
11
|
+
* utils: Group similar utilities together
|
12
|
+
* utils: Don't warn for partial formatter classes
|
13
|
+
* typing: Add typing to osc\_lib.utils
|
14
|
+
* typing: Add typing to osc\_lib.command
|
15
|
+
* clientmanager: Deprecate ClientCache
|
16
|
+
* typing: Add typing to osc\_lib.clientmanager
|
17
|
+
* typing: Add typing to osc\_lib.shell
|
18
|
+
* typing: Add typing to osc\_lib.logs, osc\_lib.i18n
|
19
|
+
* typing: Add typing to osc\_lib.cli
|
20
|
+
* api: Deprecate BaseAPI
|
21
|
+
* typing: Add typing to osc\_lib.api
|
22
|
+
* Remove unused docs Makefile
|
23
|
+
* typing: Add typing to osc\_lib.exceptions
|
24
|
+
* pre-commit: Enable mypy
|
25
|
+
* typing: Fix initial typing issues
|
26
|
+
* Update master for stable/2025.1
|
27
|
+
* Add pagination helpers
|
28
|
+
* pre-commit: Enable ruff S (bandit) checks
|
29
|
+
* pre-commit: Bump versions
|
30
|
+
* tests: Use consistent output widths
|
31
|
+
* reno: Update master for unmaintained/2023.1
|
32
|
+
|
4
33
|
3.2.0
|
5
34
|
-----
|
6
35
|
|
osc_lib-4.0.0/PKG-INFO
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: osc-lib
|
3
|
+
Version: 4.0.0
|
4
|
+
Summary: OpenStackClient Library
|
5
|
+
Home-page: https://docs.openstack.org/osc-lib/latest/
|
6
|
+
Author: OpenStack
|
7
|
+
Author-email: openstack-discuss@lists.openstack.org
|
8
|
+
Project-URL: Bug Tracker, https://storyboard.openstack.org/#!/project/openstack/osc-lib
|
9
|
+
Project-URL: Documentation, https://docs.openstack.org/osc-lib/latest/
|
10
|
+
Project-URL: Source Code, https://opendev.org/openstack/osc-lib/
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
12
|
+
Classifier: Environment :: OpenStack
|
13
|
+
Classifier: Intended Audience :: Information Technology
|
14
|
+
Classifier: Intended Audience :: System Administrators
|
15
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
16
|
+
Classifier: Operating System :: POSIX :: Linux
|
17
|
+
Classifier: Programming Language :: Python
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
19
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
20
|
+
Requires-Python: >=3.8
|
21
|
+
License-File: LICENSE
|
22
|
+
Requires-Dist: cliff>=4.9.0
|
23
|
+
Requires-Dist: keystoneauth1>=5.10.0
|
24
|
+
Requires-Dist: openstacksdk>=0.15.0
|
25
|
+
Requires-Dist: oslo.i18n>=3.15.3
|
26
|
+
Requires-Dist: oslo.utils>=3.33.0
|
27
|
+
Requires-Dist: pbr!=2.1.0,>=2.0.0
|
28
|
+
Requires-Dist: requests>=2.14.2
|
29
|
+
Requires-Dist: stevedore>=1.20.0
|
30
|
+
|
31
|
+
=======
|
32
|
+
osc-lib
|
33
|
+
=======
|
34
|
+
|
35
|
+
.. image:: https://img.shields.io/pypi/v/osc-lib.svg
|
36
|
+
:target: https://pypi.org/project/osc-lib/
|
37
|
+
:alt: Latest Version
|
38
|
+
|
39
|
+
OpenStackClient (aka OSC) is a command-line client for OpenStack. osc-lib
|
40
|
+
is a package of common support modules for writing OSC plugins.
|
41
|
+
|
42
|
+
* `PyPi`_ - package installation
|
43
|
+
* `Online Documentation`_
|
44
|
+
* `Launchpad project`_ - part of OpenStackClient
|
45
|
+
* `Bugs`_ - issue tracking
|
46
|
+
* `Source`_
|
47
|
+
* `Developer` - getting started as a developer
|
48
|
+
* `Contributing` - contributing code
|
49
|
+
* `Testing` - testing code
|
50
|
+
* IRC: #openstack-sdks on OFTC (irc.oftc.net)
|
51
|
+
* License: Apache 2.0
|
52
|
+
|
53
|
+
.. _PyPi: https://pypi.org/project/osc-lib
|
54
|
+
.. _Online Documentation: http://docs.openstack.org/osc-lib/latest/
|
55
|
+
.. _Launchpad project: https://launchpad.net/python-openstackclient
|
56
|
+
.. _Bugs: https://storyboard.openstack.org/#!/project_group/80
|
57
|
+
.. _Source: https://opendev.org/openstack/osc-lib
|
58
|
+
.. _Developer: http://docs.openstack.org/project-team-guide/project-setup/python.html
|
59
|
+
.. _Contributing: http://docs.openstack.org/infra/manual/developers.html
|
60
|
+
.. _Testing: http://docs.openstack.org/osc-lib/latest/contributor/#testing
|
61
|
+
.. _Release Notes: https://docs.openstack.org/releasenotes/osc-lib
|
62
|
+
|
63
|
+
Getting Started
|
64
|
+
===============
|
65
|
+
|
66
|
+
osc-lib can be installed from PyPI using pip::
|
67
|
+
|
68
|
+
pip install osc-lib
|
69
|
+
|
70
|
+
Transition From OpenStackclient
|
71
|
+
===============================
|
72
|
+
|
73
|
+
This library was extracted from the main OSC repo after the OSC 2.4.0 release.
|
74
|
+
The following are the changes to imports that will cover the majority of
|
75
|
+
transition to using osc-lib:
|
76
|
+
|
77
|
+
* openstackclient.api.api -> osc_lib.api.api
|
78
|
+
* openstackclient.api.auth -> osc_lib.api.auth
|
79
|
+
* openstackclient.api.utils -> osc_lib.api.utils
|
80
|
+
* openstackclient.common.command -> osc_lib.command.command
|
81
|
+
* openstackclient.common.commandmanager -> osc_lib.command.commandmanager
|
82
|
+
* openstackclient.common.exceptions -> osc_lib.exceptions
|
83
|
+
* openstackclient.common.logs -> osc_lib.logs
|
84
|
+
* openstackclient.common.parseractions -> osc_lib.cli.parseractions
|
85
|
+
* openstackclient.common.session -> osc_lib.session
|
86
|
+
* openstackclient.common.utils -> osc_lib.utils
|
87
|
+
* openstackclient.i18n -> osc_lib.i18n
|
88
|
+
* openstackclient.shell -> osc_lib.shell
|
89
|
+
|
90
|
+
Also, some of the test fixtures and modules may be used:
|
91
|
+
|
92
|
+
* openstackclient.tests.fakes -> osc_lib.tests.fakes
|
93
|
+
* openstackclient.tests.utils -> osc_lib.tests.utils
|
94
|
+
|
@@ -13,6 +13,10 @@
|
|
13
13
|
|
14
14
|
"""Base API Library"""
|
15
15
|
|
16
|
+
import builtins
|
17
|
+
import typing as ty
|
18
|
+
import warnings
|
19
|
+
|
16
20
|
from keystoneauth1 import exceptions as ksa_exceptions
|
17
21
|
from keystoneauth1 import session as ksa_session
|
18
22
|
import requests
|
@@ -42,8 +46,12 @@ class BaseAPI:
|
|
42
46
|
HEADER_NAME = "OpenStack-API-Version"
|
43
47
|
|
44
48
|
def __init__(
|
45
|
-
self,
|
46
|
-
|
49
|
+
self,
|
50
|
+
session: ty.Optional[ksa_session.Session] = None,
|
51
|
+
service_type: ty.Optional[str] = None,
|
52
|
+
endpoint: ty.Optional[str] = None,
|
53
|
+
**kwargs: ty.Any,
|
54
|
+
) -> None:
|
47
55
|
"""Base object that contains some common API objects and methods
|
48
56
|
|
49
57
|
:param keystoneauth1.session.Session session:
|
@@ -58,6 +66,12 @@ class BaseAPI:
|
|
58
66
|
Keyword arguments passed to keystoneauth1.session.Session().
|
59
67
|
"""
|
60
68
|
|
69
|
+
warnings.warn(
|
70
|
+
'The BaseAPI class is deprecated for removal. Consider using '
|
71
|
+
'openstacksdk instead else vendoring this code into your client',
|
72
|
+
category=DeprecationWarning,
|
73
|
+
)
|
74
|
+
|
61
75
|
super().__init__()
|
62
76
|
|
63
77
|
# Create a keystoneauth1.session.Session if one is not supplied
|
@@ -69,7 +83,7 @@ class BaseAPI:
|
|
69
83
|
self.service_type = service_type
|
70
84
|
self.endpoint = self._munge_endpoint(endpoint)
|
71
85
|
|
72
|
-
def _munge_endpoint(self, endpoint):
|
86
|
+
def _munge_endpoint(self, endpoint: ty.Optional[str]) -> ty.Optional[str]:
|
73
87
|
"""Hook to allow subclasses to massage the passed-in endpoint
|
74
88
|
|
75
89
|
Hook to massage passed-in endpoints from arbitrary sources,
|
@@ -90,7 +104,13 @@ class BaseAPI:
|
|
90
104
|
else:
|
91
105
|
return endpoint
|
92
106
|
|
93
|
-
def _request(
|
107
|
+
def _request(
|
108
|
+
self,
|
109
|
+
method: str,
|
110
|
+
url: str,
|
111
|
+
session: ty.Optional[ksa_session.Session] = None,
|
112
|
+
**kwargs: ty.Any,
|
113
|
+
) -> requests.Response:
|
94
114
|
"""Perform call into session
|
95
115
|
|
96
116
|
All API calls are funneled through this method to provide a common
|
@@ -136,7 +156,13 @@ class BaseAPI:
|
|
136
156
|
|
137
157
|
# The basic action methods all take a Session and return dict/lists
|
138
158
|
|
139
|
-
def create(
|
159
|
+
def create(
|
160
|
+
self,
|
161
|
+
url: str,
|
162
|
+
session: ty.Optional[ksa_session.Session] = None,
|
163
|
+
method: ty.Optional[str] = None,
|
164
|
+
**params: ty.Any,
|
165
|
+
) -> ty.Union[requests.Response, ty.Any]:
|
140
166
|
"""Create a new resource
|
141
167
|
|
142
168
|
:param string url:
|
@@ -156,7 +182,12 @@ class BaseAPI:
|
|
156
182
|
except requests.JSONDecodeError:
|
157
183
|
return ret
|
158
184
|
|
159
|
-
def delete(
|
185
|
+
def delete(
|
186
|
+
self,
|
187
|
+
url: str,
|
188
|
+
session: ty.Optional[ksa_session.Session] = None,
|
189
|
+
**params: ty.Any,
|
190
|
+
) -> requests.Response:
|
160
191
|
"""Delete a resource
|
161
192
|
|
162
193
|
:param string url:
|
@@ -169,13 +200,13 @@ class BaseAPI:
|
|
169
200
|
|
170
201
|
def list(
|
171
202
|
self,
|
172
|
-
path,
|
173
|
-
session=None,
|
174
|
-
body=None,
|
175
|
-
detailed=False,
|
176
|
-
headers=None,
|
177
|
-
**params,
|
178
|
-
):
|
203
|
+
path: str,
|
204
|
+
session: ty.Optional[ksa_session.Session] = None,
|
205
|
+
body: ty.Any = None,
|
206
|
+
detailed: bool = False,
|
207
|
+
headers: ty.Optional[dict[str, str]] = None,
|
208
|
+
**params: ty.Any,
|
209
|
+
) -> ty.Union[requests.Response, ty.Any]:
|
179
210
|
"""Return a list of resources
|
180
211
|
|
181
212
|
GET ${ENDPOINT}/${PATH}?${PARAMS}
|
@@ -226,11 +257,11 @@ class BaseAPI:
|
|
226
257
|
|
227
258
|
def find_attr(
|
228
259
|
self,
|
229
|
-
path,
|
230
|
-
value=None,
|
231
|
-
attr=None,
|
232
|
-
resource=None,
|
233
|
-
):
|
260
|
+
path: str,
|
261
|
+
value: ty.Optional[str] = None,
|
262
|
+
attr: ty.Optional[str] = None,
|
263
|
+
resource: ty.Optional[str] = None,
|
264
|
+
) -> ty.Any:
|
234
265
|
"""Find a resource via attribute or ID
|
235
266
|
|
236
267
|
Most APIs return a list wrapped by a dict with the resource
|
@@ -260,7 +291,7 @@ class BaseAPI:
|
|
260
291
|
if resource is None:
|
261
292
|
resource = path
|
262
293
|
|
263
|
-
def getlist(kw):
|
294
|
+
def getlist(kw: dict[str, ty.Any]) -> ty.Any:
|
264
295
|
"""Do list call, unwrap resource dict if present"""
|
265
296
|
ret = self.list(path, **kw)
|
266
297
|
if isinstance(ret, dict) and resource in ret:
|
@@ -290,7 +321,12 @@ class BaseAPI:
|
|
290
321
|
msg % {'resource': resource, 'attr': attr, 'value': value}
|
291
322
|
)
|
292
323
|
|
293
|
-
def find_bulk(
|
324
|
+
def find_bulk(
|
325
|
+
self,
|
326
|
+
path: str,
|
327
|
+
headers: ty.Optional[dict[str, str]] = None,
|
328
|
+
**kwargs: ty.Any,
|
329
|
+
) -> builtins.list[ty.Any]:
|
294
330
|
"""Bulk load and filter locally
|
295
331
|
|
296
332
|
:param string path:
|
@@ -318,7 +354,7 @@ class BaseAPI:
|
|
318
354
|
|
319
355
|
return ret
|
320
356
|
|
321
|
-
def find_one(self, path, **kwargs):
|
357
|
+
def find_one(self, path: str, **kwargs: ty.Any) -> ty.Any:
|
322
358
|
"""Find a resource by name or ID
|
323
359
|
|
324
360
|
:param string path:
|
@@ -339,11 +375,11 @@ class BaseAPI:
|
|
339
375
|
|
340
376
|
def find(
|
341
377
|
self,
|
342
|
-
path,
|
343
|
-
value=None,
|
344
|
-
attr=None,
|
345
|
-
headers=None,
|
346
|
-
):
|
378
|
+
path: str,
|
379
|
+
value: ty.Optional[str] = None,
|
380
|
+
attr: ty.Optional[str] = None,
|
381
|
+
headers: ty.Optional[dict[str, str]] = None,
|
382
|
+
) -> ty.Any:
|
347
383
|
"""Find a single resource by name or ID
|
348
384
|
|
349
385
|
:param string path:
|
@@ -356,7 +392,7 @@ class BaseAPI:
|
|
356
392
|
Headers dictionary to pass to requests
|
357
393
|
"""
|
358
394
|
|
359
|
-
def raise_not_found():
|
395
|
+
def raise_not_found() -> ty.NoReturn:
|
360
396
|
msg = _("%s not found") % value
|
361
397
|
raise exceptions.NotFound(404, msg)
|
362
398
|
|
@@ -14,7 +14,9 @@
|
|
14
14
|
"""Authentication Library"""
|
15
15
|
|
16
16
|
import argparse
|
17
|
+
import typing as ty
|
17
18
|
|
19
|
+
from keystoneauth1.identity import base as identity_base
|
18
20
|
from keystoneauth1.identity.v3 import k2k
|
19
21
|
from keystoneauth1.loading import base
|
20
22
|
|
@@ -22,16 +24,25 @@ from osc_lib import exceptions as exc
|
|
22
24
|
from osc_lib.i18n import _
|
23
25
|
from osc_lib import utils
|
24
26
|
|
27
|
+
if ty.TYPE_CHECKING:
|
28
|
+
from openstack import connection
|
29
|
+
|
25
30
|
|
26
31
|
# Initialize the list of Authentication plugins early in order
|
27
32
|
# to get the command-line options
|
28
33
|
PLUGIN_LIST = None
|
29
34
|
|
35
|
+
|
36
|
+
class _OptionDict(ty.TypedDict):
|
37
|
+
env: str
|
38
|
+
help: str
|
39
|
+
|
40
|
+
|
30
41
|
# List of plugin command line options
|
31
|
-
OPTIONS_LIST = {}
|
42
|
+
OPTIONS_LIST: dict[str, _OptionDict] = {}
|
32
43
|
|
33
44
|
|
34
|
-
def get_plugin_list():
|
45
|
+
def get_plugin_list() -> frozenset[str]:
|
35
46
|
"""Gather plugin list and cache it"""
|
36
47
|
|
37
48
|
global PLUGIN_LIST
|
@@ -41,7 +52,7 @@ def get_plugin_list():
|
|
41
52
|
return PLUGIN_LIST
|
42
53
|
|
43
54
|
|
44
|
-
def get_options_list():
|
55
|
+
def get_options_list() -> dict[str, _OptionDict]:
|
45
56
|
"""Gather plugin options so the help action has them available"""
|
46
57
|
|
47
58
|
global OPTIONS_LIST
|
@@ -65,7 +76,10 @@ def get_options_list():
|
|
65
76
|
return OPTIONS_LIST
|
66
77
|
|
67
78
|
|
68
|
-
def check_valid_authorization_options(
|
79
|
+
def check_valid_authorization_options(
|
80
|
+
options: 'connection.Connection',
|
81
|
+
auth_plugin_name: str,
|
82
|
+
) -> None:
|
69
83
|
"""Validate authorization options, and provide helpful error messages."""
|
70
84
|
if (
|
71
85
|
options.auth.get('project_id')
|
@@ -86,16 +100,15 @@ def check_valid_authorization_options(options, auth_plugin_name):
|
|
86
100
|
)
|
87
101
|
|
88
102
|
|
89
|
-
def check_valid_authentication_options(
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
"""
|
95
|
-
|
103
|
+
def check_valid_authentication_options(
|
104
|
+
options: 'connection.Connection',
|
105
|
+
auth_plugin_name: str,
|
106
|
+
) -> None:
|
107
|
+
"""Validate authentication options, and provide helpful error messages."""
|
96
108
|
# Get all the options defined within the plugin.
|
97
|
-
plugin_opts =
|
98
|
-
|
109
|
+
plugin_opts = {
|
110
|
+
opt.dest: opt for opt in base.get_plugin_options(auth_plugin_name)
|
111
|
+
}
|
99
112
|
|
100
113
|
# NOTE(aloga): this is an horrible hack. We need a way to specify the
|
101
114
|
# required options in the plugins. Using the "required" argument for
|
@@ -141,7 +154,9 @@ def check_valid_authentication_options(options, auth_plugin_name):
|
|
141
154
|
)
|
142
155
|
|
143
156
|
|
144
|
-
def build_auth_plugins_option_parser(
|
157
|
+
def build_auth_plugins_option_parser(
|
158
|
+
parser: argparse.ArgumentParser,
|
159
|
+
) -> argparse.ArgumentParser:
|
145
160
|
"""Auth plugins options builder
|
146
161
|
|
147
162
|
Builds dynamically the list of options expected by each available
|
@@ -206,13 +221,13 @@ def build_auth_plugins_option_parser(parser):
|
|
206
221
|
|
207
222
|
|
208
223
|
def get_keystone2keystone_auth(
|
209
|
-
local_auth,
|
210
|
-
service_provider,
|
211
|
-
project_id=None,
|
212
|
-
project_name=None,
|
213
|
-
project_domain_id=None,
|
214
|
-
project_domain_name=None,
|
215
|
-
):
|
224
|
+
local_auth: identity_base.BaseIdentityPlugin,
|
225
|
+
service_provider: str,
|
226
|
+
project_id: ty.Optional[str] = None,
|
227
|
+
project_name: ty.Optional[str] = None,
|
228
|
+
project_domain_id: ty.Optional[str] = None,
|
229
|
+
project_domain_name: ty.Optional[str] = None,
|
230
|
+
) -> k2k.Keystone2Keystone:
|
216
231
|
"""Return Keystone 2 Keystone authentication for service provider.
|
217
232
|
|
218
233
|
:param local_auth: authentication to use with the local Keystone
|
@@ -13,13 +13,18 @@
|
|
13
13
|
|
14
14
|
"""API Utilities Library"""
|
15
15
|
|
16
|
+
import typing as ty
|
17
|
+
|
18
|
+
|
19
|
+
_T = ty.TypeVar('_T', bound=list[ty.Any])
|
20
|
+
|
16
21
|
|
17
22
|
def simple_filter(
|
18
|
-
data=None,
|
19
|
-
attr=None,
|
20
|
-
value=None,
|
21
|
-
property_field=None,
|
22
|
-
):
|
23
|
+
data: ty.Optional[_T] = None,
|
24
|
+
attr: ty.Optional[str] = None,
|
25
|
+
value: ty.Optional[str] = None,
|
26
|
+
property_field: ty.Optional[str] = None,
|
27
|
+
) -> ty.Optional[_T]:
|
23
28
|
"""Filter a list of dicts
|
24
29
|
|
25
30
|
:param list data:
|
@@ -14,7 +14,9 @@
|
|
14
14
|
"""OpenStackConfig subclass for argument compatibility"""
|
15
15
|
|
16
16
|
import logging
|
17
|
+
import typing as ty
|
17
18
|
|
19
|
+
from keystoneauth1.loading import identity as ksa_loading
|
18
20
|
from openstack.config import exceptions as sdk_exceptions
|
19
21
|
from openstack.config import loader as config
|
20
22
|
from oslo_utils import strutils
|
@@ -23,10 +25,12 @@ from oslo_utils import strutils
|
|
23
25
|
LOG = logging.getLogger(__name__)
|
24
26
|
|
25
27
|
|
26
|
-
#
|
28
|
+
# Subclass OpenStackConfig in order to munge config values
|
27
29
|
# before auth plugins are loaded
|
28
|
-
class OSC_Config(config.OpenStackConfig):
|
29
|
-
def _auth_select_default_plugin(
|
30
|
+
class OSC_Config(config.OpenStackConfig): # type: ignore
|
31
|
+
def _auth_select_default_plugin(
|
32
|
+
self, config: dict[str, ty.Any]
|
33
|
+
) -> dict[str, ty.Any]:
|
30
34
|
"""Select a default plugin based on supplied arguments
|
31
35
|
|
32
36
|
Migrated from auth.select_auth_plugin()
|
@@ -59,7 +63,9 @@ class OSC_Config(config.OpenStackConfig):
|
|
59
63
|
LOG.debug("Auth plugin {} selected".format(config['auth_type']))
|
60
64
|
return config
|
61
65
|
|
62
|
-
def _auth_v2_arguments(
|
66
|
+
def _auth_v2_arguments(
|
67
|
+
self, config: dict[str, ty.Any]
|
68
|
+
) -> dict[str, ty.Any]:
|
63
69
|
"""Set up v2-required arguments from v3 info
|
64
70
|
|
65
71
|
Migrated from auth.build_auth_params()
|
@@ -72,41 +78,49 @@ class OSC_Config(config.OpenStackConfig):
|
|
72
78
|
config['auth']['tenant_name'] = config['auth']['project_name']
|
73
79
|
return config
|
74
80
|
|
75
|
-
def _auth_v2_ignore_v3(
|
81
|
+
def _auth_v2_ignore_v3(
|
82
|
+
self, config: dict[str, ty.Any]
|
83
|
+
) -> dict[str, ty.Any]:
|
76
84
|
"""Remove v3 arguments if present for v2 plugin
|
77
85
|
|
78
86
|
Migrated from clientmanager.setup_auth()
|
79
87
|
"""
|
80
|
-
|
81
88
|
# NOTE(hieulq): If USER_DOMAIN_NAME, USER_DOMAIN_ID, PROJECT_DOMAIN_ID
|
82
89
|
# or PROJECT_DOMAIN_NAME is present and API_VERSION is 2.0, then
|
83
90
|
# ignore all domain related configs.
|
84
|
-
if str(config.get('identity_api_version', '')).startswith(
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
" identity API version is 2.0"
|
91
|
+
if not str(config.get('identity_api_version', '')).startswith('2'):
|
92
|
+
return config
|
93
|
+
|
94
|
+
if not config.get('auth_type') or not config['auth_type'].endswith(
|
95
|
+
'password'
|
96
|
+
):
|
97
|
+
return config
|
98
|
+
|
99
|
+
domain_props = [
|
100
|
+
'project_domain_id',
|
101
|
+
'project_domain_name',
|
102
|
+
'user_domain_id',
|
103
|
+
'user_domain_name',
|
104
|
+
]
|
105
|
+
for prop in domain_props:
|
106
|
+
if config['auth'].pop(prop, None) is not None:
|
107
|
+
if config.get('cloud'):
|
108
|
+
LOG.warning(
|
109
|
+
"Ignoring domain related config {} for {}"
|
110
|
+
"because identity API version is 2.0".format(
|
111
|
+
prop, config['cloud']
|
106
112
|
)
|
113
|
+
)
|
114
|
+
else:
|
115
|
+
LOG.warning(
|
116
|
+
f"Ignoring domain related config {prop} because"
|
117
|
+
" identity API version is 2.0"
|
118
|
+
)
|
107
119
|
return config
|
108
120
|
|
109
|
-
def _auth_default_domain(
|
121
|
+
def _auth_default_domain(
|
122
|
+
self, config: dict[str, ty.Any]
|
123
|
+
) -> dict[str, ty.Any]:
|
110
124
|
"""Set a default domain from available arguments
|
111
125
|
|
112
126
|
Migrated from clientmanager.setup_auth()
|
@@ -147,7 +161,7 @@ class OSC_Config(config.OpenStackConfig):
|
|
147
161
|
config['auth']['user_domain_id'] = default_domain
|
148
162
|
return config
|
149
163
|
|
150
|
-
def auth_config_hook(self, config):
|
164
|
+
def auth_config_hook(self, config: dict[str, ty.Any]) -> dict[str, ty.Any]:
|
151
165
|
"""Allow examination of config values before loading auth plugin
|
152
166
|
|
153
167
|
OpenStackClient will override this to perform additional checks
|
@@ -165,7 +179,11 @@ class OSC_Config(config.OpenStackConfig):
|
|
165
179
|
)
|
166
180
|
return config
|
167
181
|
|
168
|
-
def _validate_auth(
|
182
|
+
def _validate_auth(
|
183
|
+
self,
|
184
|
+
config: dict[str, ty.Any],
|
185
|
+
loader: ksa_loading.BaseIdentityLoader[ty.Any],
|
186
|
+
) -> dict[str, ty.Any]:
|
169
187
|
"""Validate auth plugin arguments"""
|
170
188
|
# May throw a keystoneauth1.exceptions.NoMatchingPlugin
|
171
189
|
|
@@ -229,7 +247,8 @@ class OSC_Config(config.OpenStackConfig):
|
|
229
247
|
|
230
248
|
return config
|
231
249
|
|
232
|
-
|
250
|
+
# TODO(stephenfin): Add type once we have typing for SDK
|
251
|
+
def load_auth_plugin(self, config: dict[str, ty.Any]) -> ty.Any:
|
233
252
|
"""Get auth plugin and validate args"""
|
234
253
|
|
235
254
|
loader = self._get_auth_loader(config)
|