You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.6 KiB
49 lines
1.6 KiB
# Copyright (c) 2013 OpenStack Foundation |
|
# |
|
# 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. |
|
|
|
from neutron_lib.db import constants as db_const |
|
from neutron_lib.db import model_base |
|
import sqlalchemy as sa |
|
|
|
UUID_LEN = 36 |
|
STR_LEN = 255 |
|
|
|
|
|
class HasTenant(object): |
|
"""Tenant mixin, add to subclasses that have a tenant.""" |
|
|
|
tenant_id = sa.Column(sa.String(db_const.PROJECT_ID_FIELD_SIZE), |
|
index=True) |
|
|
|
|
|
class AristaProvisionedVms(model_base.BASEV2, model_base.HasId, |
|
HasTenant): |
|
"""Stores VMs provisioned on Arista EOS. |
|
|
|
All VMs launched on physical hosts connected to Arista |
|
Switches are remembered |
|
""" |
|
__tablename__ = 'arista_provisioned_vms' |
|
|
|
vm_id = sa.Column(sa.String(STR_LEN)) |
|
host_id = sa.Column(sa.String(STR_LEN)) |
|
port_id = sa.Column(sa.String(UUID_LEN)) |
|
network_id = sa.Column(sa.String(UUID_LEN)) |
|
|
|
def eos_port_representation(self): |
|
return {u'portId': self.port_id, |
|
u'deviceId': self.vm_id, |
|
u'hosts': [self.host_id], |
|
u'networkId': self.network_id}
|
|
|