File: removed-glanceclient-105c7fba9481b9be.yaml

package info (click to toggle)
python-openstacksdk 4.4.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,352 kB
  • sloc: python: 122,960; sh: 153; makefile: 23
file content (28 lines) | stat: -rw-r--r-- 1,177 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
prelude: >
    The ``shade`` and ``os-client-config`` libraries have been merged
    in to openstacksdk. As a result, their functionality is being
    integrated into the sdk functionality, and in some cases is replacing
    exisiting things.

    The ``openstack.profile.Profile`` and
    ``openstack.auth.base.BaseAuthPlugin`` classes are no more. Profile has
    been replace by ``openstack.config.cloud_region.CloudRegion`` from
    `os-client-config
    <https://opendev.org/openstack/os-client-config>`_
    ``openstack.auth.base.BaseAuthPlugin`` has been replaced with the Auth
    plugins from keystoneauth.

    Service proxy names on the ``openstack.connection.Connection`` are all
    based on the official names from the OpenStack Service Types Authority.

    ``openstack.proxy.Proxy`` is now a subclass of
    ``keystoneauth1.adapter.Adapter``. Removed local logic that duplicates
    keystoneauth logic. This means every proxy also has direct REST primitives
    available.

      .. code-block:: python

        connection = connection.Connection()
        servers = connection.compute.servers()
        server_response = connection.compute.get('/servers')