The openstack_dashboard.dashboards.admin.info.tables ModuleΒΆ

class openstack_dashboard.dashboards.admin.info.tables.NetworkAgentsFilterAction(**kwargs)[source]

Bases: horizon.tables.actions.FilterAction

base_options = {'__module__': 'openstack_dashboard.dashboards.admin.info.tables', '__metaclass__': <class 'horizon.tables.actions.BaseActionMetaClass'>, 'update': <function update at 0xa416f7c>, 'get_policy_target': <function get_policy_target at 0xa41687c>, 'allowed': <function allowed at 0xa416a04>, 'base_options': {'__module__': 'horizon.tables.actions', '__metaclass__': <class 'horizon.tables.actions.BaseActionMetaClass'>, 'data_type_matched': <function data_type_matched at 0xa41695c>, 'get_default_classes': <function get_default_classes at 0xa416d4c>, 'update': <function update at 0xa416f7c>, 'get_policy_target': <function get_policy_target at 0xa41687c>, '_allowed': <function _allowed at 0xa416b1c>, '__repr__': <function __repr__ at 0xa416fb4>, 'allowed': <function allowed at 0xa416a04>, 'get_default_attrs': <function get_default_attrs at 0xa416a3c>, 'base_options': {...}, '__doc__': 'Common base class for all ``Action`` classes.', '__init__': <function __init__ at 0xa416ae4>}, '__init__': <function __init__ at 0xa416a74>, 'filter': <function filter at 0xb9119cc>, 'name': 'filter', 'data_type_matched': <function data_type_matched at 0xa41695c>, 'get_default_classes': <function get_default_classes at 0xa416e9c>, 'get_param_name': <function get_param_name at 0xa416dbc>, 'data_type_filter': <function data_type_filter at 0xa416e2c>, '_allowed': <function _allowed at 0xa416b1c>, '__repr__': <function __repr__ at 0xa416fb4>, 'get_default_attrs': <function get_default_attrs at 0xa416a3c>, 'assign_type_string': <function assign_type_string at 0xa4169cc>, '__doc__': 'A base class representing a filter action for a table.\n\n .. attribute:: name\n\n The short name or "slug" representing this action. Defaults to\n ``"filter"``.\n\n .. attribute:: verbose_name\n\n A descriptive name used for display purposes. Defaults to the\n value of ``name`` with the first letter of each word capitalized.\n\n .. attribute:: param_name\n\n A string representing the name of the request parameter used for the\n search term. Default: ``"q"``.\n\n .. attribute: filter_type\n\n A string representing the type of this filter. Default: ``"query"``.\n\n .. attribute: needs_preloading\n\n If True, the filter function will be called for the initial\n GET request with an empty ``filter_string``, regardless of the\n value of ``method``.\n '}
filter(table, agents, filter_string)[source]
class openstack_dashboard.dashboards.admin.info.tables.NetworkAgentsTable(request, data=None, needs_form_wrapper=None, **kwargs)[source]

Bases: horizon.tables.base.DataTable

class Meta[source]
multi_select = False
name = 'network_agents'
table_actions = (<class 'openstack_dashboard.dashboards.admin.info.tables.NetworkAgentsFilterAction'>,)
verbose_name = <django.utils.functional.__proxy__ object at 0xb8fb30c>
NetworkAgentsTable.base_actions = {'filter': <NetworkAgentsFilterAction: filter>}
NetworkAgentsTable.base_columns = {'agent_type': <Column: agent_type>, 'binary': <Column: binary>, 'host': <Column: host>, 'status': <Column: status>, 'state': <Column: state>, 'heartbeat_timestamp': <Column: heartbeat_timestamp>}
NetworkAgentsTable.get_object_id(obj)[source]
class openstack_dashboard.dashboards.admin.info.tables.NovaServiceFilterAction(**kwargs)[source]

Bases: horizon.tables.actions.FilterAction

base_options = {'__module__': 'openstack_dashboard.dashboards.admin.info.tables', '__metaclass__': <class 'horizon.tables.actions.BaseActionMetaClass'>, 'update': <function update at 0xa416f7c>, 'get_policy_target': <function get_policy_target at 0xa41687c>, 'allowed': <function allowed at 0xa416a04>, 'base_options': {'__module__': 'horizon.tables.actions', '__metaclass__': <class 'horizon.tables.actions.BaseActionMetaClass'>, 'data_type_matched': <function data_type_matched at 0xa41695c>, 'get_default_classes': <function get_default_classes at 0xa416d4c>, 'update': <function update at 0xa416f7c>, 'get_policy_target': <function get_policy_target at 0xa41687c>, '_allowed': <function _allowed at 0xa416b1c>, '__repr__': <function __repr__ at 0xa416fb4>, 'allowed': <function allowed at 0xa416a04>, 'get_default_attrs': <function get_default_attrs at 0xa416a3c>, 'base_options': {...}, '__doc__': 'Common base class for all ``Action`` classes.', '__init__': <function __init__ at 0xa416ae4>}, '__init__': <function __init__ at 0xa416a74>, 'filter': <function filter at 0xb91195c>, 'name': 'filter', 'data_type_matched': <function data_type_matched at 0xa41695c>, 'get_default_classes': <function get_default_classes at 0xa416e9c>, 'get_param_name': <function get_param_name at 0xa416dbc>, 'data_type_filter': <function data_type_filter at 0xa416e2c>, '_allowed': <function _allowed at 0xa416b1c>, '__repr__': <function __repr__ at 0xa416fb4>, 'get_default_attrs': <function get_default_attrs at 0xa416a3c>, 'assign_type_string': <function assign_type_string at 0xa4169cc>, '__doc__': 'A base class representing a filter action for a table.\n\n .. attribute:: name\n\n The short name or "slug" representing this action. Defaults to\n ``"filter"``.\n\n .. attribute:: verbose_name\n\n A descriptive name used for display purposes. Defaults to the\n value of ``name`` with the first letter of each word capitalized.\n\n .. attribute:: param_name\n\n A string representing the name of the request parameter used for the\n search term. Default: ``"q"``.\n\n .. attribute: filter_type\n\n A string representing the type of this filter. Default: ``"query"``.\n\n .. attribute: needs_preloading\n\n If True, the filter function will be called for the initial\n GET request with an empty ``filter_string``, regardless of the\n value of ``method``.\n '}
filter(table, services, filter_string)[source]
class openstack_dashboard.dashboards.admin.info.tables.NovaServicesTable(request, data=None, needs_form_wrapper=None, **kwargs)[source]

Bases: horizon.tables.base.DataTable

class Meta[source]
multi_select = False
name = 'nova_services'
table_actions = (<class 'openstack_dashboard.dashboards.admin.info.tables.NovaServiceFilterAction'>,)
verbose_name = <django.utils.functional.__proxy__ object at 0xb92ae6c>
NovaServicesTable.base_actions = {'filter': <NovaServiceFilterAction: filter>}
NovaServicesTable.base_columns = {'binary': <Column: binary>, 'host': <Column: host>, 'zone': <Column: zone>, 'status': <Column: status>, 'state': <Column: state>, 'updated_at': <Column: updated_at>}
NovaServicesTable.get_object_id(obj)[source]
class openstack_dashboard.dashboards.admin.info.tables.QuotaFilterAction(**kwargs)[source]

Bases: horizon.tables.actions.FilterAction

base_options = {'__module__': 'openstack_dashboard.dashboards.admin.info.tables', '__metaclass__': <class 'horizon.tables.actions.BaseActionMetaClass'>, 'update': <function update at 0xa416f7c>, 'get_policy_target': <function get_policy_target at 0xa41687c>, 'allowed': <function allowed at 0xa416a04>, 'base_options': {'__module__': 'horizon.tables.actions', '__metaclass__': <class 'horizon.tables.actions.BaseActionMetaClass'>, 'data_type_matched': <function data_type_matched at 0xa41695c>, 'get_default_classes': <function get_default_classes at 0xa416d4c>, 'update': <function update at 0xa416f7c>, 'get_policy_target': <function get_policy_target at 0xa41687c>, '_allowed': <function _allowed at 0xa416b1c>, '__repr__': <function __repr__ at 0xa416fb4>, 'allowed': <function allowed at 0xa416a04>, 'get_default_attrs': <function get_default_attrs at 0xa416a3c>, 'base_options': {...}, '__doc__': 'Common base class for all ``Action`` classes.', '__init__': <function __init__ at 0xa416ae4>}, '__init__': <function __init__ at 0xa416a74>, 'filter': <function filter at 0xb911a74>, 'name': 'filter', 'data_type_matched': <function data_type_matched at 0xa41695c>, 'get_default_classes': <function get_default_classes at 0xa416e9c>, 'get_param_name': <function get_param_name at 0xa416dbc>, 'data_type_filter': <function data_type_filter at 0xa416e2c>, '_allowed': <function _allowed at 0xa416b1c>, '__repr__': <function __repr__ at 0xa416fb4>, 'get_default_attrs': <function get_default_attrs at 0xa416a3c>, 'assign_type_string': <function assign_type_string at 0xa4169cc>, '__doc__': 'A base class representing a filter action for a table.\n\n .. attribute:: name\n\n The short name or "slug" representing this action. Defaults to\n ``"filter"``.\n\n .. attribute:: verbose_name\n\n A descriptive name used for display purposes. Defaults to the\n value of ``name`` with the first letter of each word capitalized.\n\n .. attribute:: param_name\n\n A string representing the name of the request parameter used for the\n search term. Default: ``"q"``.\n\n .. attribute: filter_type\n\n A string representing the type of this filter. Default: ``"query"``.\n\n .. attribute: needs_preloading\n\n If True, the filter function will be called for the initial\n GET request with an empty ``filter_string``, regardless of the\n value of ``method``.\n '}
filter(table, tenants, filter_string)[source]
class openstack_dashboard.dashboards.admin.info.tables.QuotasTable(request, data=None, needs_form_wrapper=None, **kwargs)[source]

Bases: horizon.tables.base.DataTable

class Meta[source]
multi_select = False
name = 'quotas'
table_actions = (<class 'openstack_dashboard.dashboards.admin.info.tables.QuotaFilterAction'>,)
verbose_name = <django.utils.functional.__proxy__ object at 0xb8fb58c>
QuotasTable.base_actions = {'filter': <QuotaFilterAction: filter>}
QuotasTable.base_columns = {'name': <Column: name>, 'limit': <Column: limit>}
QuotasTable.get_object_id(obj)[source]
class openstack_dashboard.dashboards.admin.info.tables.ServiceFilterAction(**kwargs)[source]

Bases: horizon.tables.actions.FilterAction

base_options = {'__module__': 'openstack_dashboard.dashboards.admin.info.tables', '__metaclass__': <class 'horizon.tables.actions.BaseActionMetaClass'>, 'update': <function update at 0xa416f7c>, 'get_policy_target': <function get_policy_target at 0xa41687c>, 'allowed': <function allowed at 0xa416a04>, 'base_options': {'__module__': 'horizon.tables.actions', '__metaclass__': <class 'horizon.tables.actions.BaseActionMetaClass'>, 'data_type_matched': <function data_type_matched at 0xa41695c>, 'get_default_classes': <function get_default_classes at 0xa416d4c>, 'update': <function update at 0xa416f7c>, 'get_policy_target': <function get_policy_target at 0xa41687c>, '_allowed': <function _allowed at 0xa416b1c>, '__repr__': <function __repr__ at 0xa416fb4>, 'allowed': <function allowed at 0xa416a04>, 'get_default_attrs': <function get_default_attrs at 0xa416a3c>, 'base_options': {...}, '__doc__': 'Common base class for all ``Action`` classes.', '__init__': <function __init__ at 0xa416ae4>}, '__init__': <function __init__ at 0xa416a74>, 'filter': <function filter at 0xb91187c>, 'name': 'filter', 'data_type_matched': <function data_type_matched at 0xa41695c>, 'get_default_classes': <function get_default_classes at 0xa416e9c>, 'get_param_name': <function get_param_name at 0xa416dbc>, 'data_type_filter': <function data_type_filter at 0xa416e2c>, '_allowed': <function _allowed at 0xa416b1c>, '__repr__': <function __repr__ at 0xa416fb4>, 'get_default_attrs': <function get_default_attrs at 0xa416a3c>, 'assign_type_string': <function assign_type_string at 0xa4169cc>, '__doc__': 'A base class representing a filter action for a table.\n\n .. attribute:: name\n\n The short name or "slug" representing this action. Defaults to\n ``"filter"``.\n\n .. attribute:: verbose_name\n\n A descriptive name used for display purposes. Defaults to the\n value of ``name`` with the first letter of each word capitalized.\n\n .. attribute:: param_name\n\n A string representing the name of the request parameter used for the\n search term. Default: ``"q"``.\n\n .. attribute: filter_type\n\n A string representing the type of this filter. Default: ``"query"``.\n\n .. attribute: needs_preloading\n\n If True, the filter function will be called for the initial\n GET request with an empty ``filter_string``, regardless of the\n value of ``method``.\n '}
filter(table, services, filter_string)[source]
class openstack_dashboard.dashboards.admin.info.tables.ServicesTable(request, data=None, needs_form_wrapper=None, **kwargs)[source]

Bases: horizon.tables.base.DataTable

class Meta[source]
multi_select = False
name = 'services'
status_columns = ['enabled']
table_actions = (<class 'openstack_dashboard.dashboards.admin.info.tables.ServiceFilterAction'>,)
verbose_name = <django.utils.functional.__proxy__ object at 0xb910f4c>
ServicesTable.base_actions = {'filter': <ServiceFilterAction: filter>}
ServicesTable.base_columns = {'id': <Column: id>, 'name': <Column: name>, 'service_type': <Column: service_type>, 'host': <Column: host>, 'enabled': <Column: enabled>}
openstack_dashboard.dashboards.admin.info.tables.get_available(zone)[source]
openstack_dashboard.dashboards.admin.info.tables.get_enabled(service, reverse=False)[source]
openstack_dashboard.dashboards.admin.info.tables.get_network_agent_state(agent)[source]
openstack_dashboard.dashboards.admin.info.tables.get_network_agent_status(agent)[source]
openstack_dashboard.dashboards.admin.info.tables.get_quota_name(quota)[source]
openstack_dashboard.dashboards.admin.info.tables.get_stats(service)[source]