2014-09-09 11:50:07 +01:00
|
|
|
# Copyright 2014 Red Hat, Inc.
|
|
|
|
# All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License. You may obtain
|
|
|
|
# a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
|
|
|
|
|
|
|
|
# Chassis
|
|
|
|
|
|
|
|
CHASSIS_FIELDS = ['uuid', 'description', 'created_at', 'updated_at', 'extra']
|
|
|
|
|
|
|
|
CHASSIS_FIELD_LABELS = ['UUID', 'Description', 'Created At', 'Updated At',
|
|
|
|
'Extra']
|
|
|
|
|
2015-04-25 20:34:37 -07:00
|
|
|
CHASSIS_SORT_FIELDS = ['uuid', 'description', 'created_at', 'updated_at']
|
|
|
|
|
|
|
|
CHASSIS_SORT_FIELD_LABELS = ['UUID', 'Description', 'Created At', 'Updated At']
|
|
|
|
|
2014-09-09 11:50:07 +01:00
|
|
|
CHASSIS_LIST_FIELDS = ['uuid', 'description']
|
|
|
|
|
|
|
|
CHASSIS_LIST_FIELD_LABELS = ['UUID', 'Description']
|
|
|
|
|
|
|
|
|
|
|
|
# Nodes
|
|
|
|
|
|
|
|
NODE_FIELDS = ['chassis_uuid', 'created_at', 'console_enabled', 'driver',
|
2015-01-14 10:35:50 -08:00
|
|
|
'driver_info', 'driver_internal_info', 'extra',
|
|
|
|
'instance_info', 'instance_uuid', 'last_error',
|
|
|
|
'maintenance', 'maintenance_reason', 'power_state',
|
|
|
|
'properties', 'provision_state', 'reservation',
|
|
|
|
'target_power_state', 'target_provision_state',
|
|
|
|
'updated_at', 'inspection_finished_at',
|
2015-02-23 16:47:30 -08:00
|
|
|
'inspection_started_at', 'uuid', 'name']
|
2014-09-09 11:50:07 +01:00
|
|
|
|
|
|
|
NODE_FIELD_LABELS = ['Chassis UUID', 'Created At', 'Console Enabled', 'Driver',
|
2015-01-28 15:51:19 +08:00
|
|
|
'Driver Info', 'Driver Internal Info', 'Extra',
|
|
|
|
'Instance Info', 'Instance UUID', 'Last Error',
|
|
|
|
'Maintenance', 'Maintenance Reason', 'Power State',
|
|
|
|
'Properties', 'Provision State', 'Reservation',
|
|
|
|
'Target Power State', 'Target Provision State',
|
2015-01-14 10:35:50 -08:00
|
|
|
'Updated At', 'Inspection Finished At',
|
2015-02-23 16:47:30 -08:00
|
|
|
'Inspection Started At', 'UUID', 'Name']
|
2014-09-09 11:50:07 +01:00
|
|
|
|
2015-04-25 20:34:37 -07:00
|
|
|
# The server cannot sort on "chassis_uuid" because it isn't a
|
|
|
|
# column in the "nodes" database table. "chassis_id" is stored,
|
|
|
|
# but it is internal to ironic. See bug #1443003 for more details.
|
|
|
|
NODE_SORT_FIELDS = [x for x in NODE_FIELDS if x not in [
|
|
|
|
'chassis_uuid', 'driver_info', 'driver_internal_info',
|
|
|
|
'extra', 'instance_info', 'properties']]
|
|
|
|
|
|
|
|
NODE_SORT_FIELD_LABELS = [x for x in NODE_FIELD_LABELS if x not in [
|
|
|
|
'Chassis UUID', 'Driver Info',
|
|
|
|
'Driver Internal Info', 'EXTRA',
|
|
|
|
'Instance Info', 'Properties']]
|
|
|
|
|
2015-02-23 16:47:30 -08:00
|
|
|
NODE_LIST_FIELDS = ['uuid', 'name', 'instance_uuid', 'power_state',
|
2014-09-09 11:50:07 +01:00
|
|
|
'provision_state', 'maintenance']
|
|
|
|
|
2015-02-23 16:47:30 -08:00
|
|
|
NODE_LIST_FIELD_LABELS = ['UUID', 'Name', 'Instance UUID', 'Power State',
|
2014-09-09 11:50:07 +01:00
|
|
|
'Provisioning State', 'Maintenance']
|
|
|
|
|
|
|
|
|
|
|
|
# Ports
|
|
|
|
|
|
|
|
PORT_FIELDS = ['uuid', 'address', 'created_at', 'extra', 'node_uuid',
|
|
|
|
'updated_at']
|
|
|
|
|
|
|
|
PORT_FIELD_LABELS = ['UUID', 'Address', 'Created At', 'Extra', 'Node UUID',
|
|
|
|
'Updated At']
|
|
|
|
|
2015-04-25 20:34:37 -07:00
|
|
|
# The server cannot sort on "node_uuid" because it isn't a
|
|
|
|
# column in the "ports" database table. "node_id" is stored,
|
|
|
|
# but it is internal to ironic. See bug #1443003 for more details.
|
|
|
|
PORT_SORT_FIELDS = ['uuid', 'address', 'created_at', 'updated_at']
|
|
|
|
|
|
|
|
PORT_SORT_FIELD_LABELS = ['UUID', 'Address', 'Created At', 'Updated At']
|
|
|
|
|
2014-09-09 11:50:07 +01:00
|
|
|
PORT_LIST_FIELDS = ['uuid', 'address']
|
|
|
|
|
|
|
|
PORT_LIST_FIELD_LABELS = ['UUID', 'Address']
|