The openstack_dashboard.api.rest.config ModuleΒΆ

class openstack_dashboard.api.rest.config.AdminConfigs(**kwargs)[source]

Bases: django.views.generic.base.View

API for retrieving admin configurations.

This API returns read-only admin configuration values. This configuration object can be fetched as needed. Examples of admin config: help_url, user_home

get(request, *args, **kw)[source]

Get read-only admin configurations

url_regex = 'config/admin/$'
class openstack_dashboard.api.rest.config.DefaultUserConfigs(**kwargs)[source]

Bases: django.views.generic.base.View

API for retrieving user configurations.

This API returns read-only-default configuration values. This configuration object is ideally fetched once per application life or when a user needs to restore the default values. Examples of user config: modal_backdrop, disable_password_reveal

get(request, *args, **kw)[source]

Get default user configurations

url_regex = 'config/user/$'
class openstack_dashboard.api.rest.config.Settings(**kwargs)[source]

Bases: django.views.generic.base.View

API for retrieving settings.

This API returns read-only settings values. This configuration object can be fetched as needed. Examples of settings: OPENSTACK_HYPERVISOR_FEATURES

get(request, *args, **kw)[source]
url_regex = 'settings/$'

Previous topic

The openstack_dashboard.api.rest.neutron Module

Next topic

The openstack_dashboard.api.rest.utils Module

This Page