deb-designate/designate/objects/record.py
Graham Hayes c5949ccb28 Rename all references of Domain to Zone
This is a pretty invasive change :)

A non complete list of changes:

* Database Tables
* Database Columns
* Designate Objects and fields on Objects
* Designate Objects Adaptors stop doing some of the renames
* All RPCAPI versions are bumped - totally backward
  incompatable (function names have changed)

Change-Id: Ib99e918998a3909fa4aa92bf1ee0475f8a519196
2015-11-17 15:22:16 +00:00

146 lines
3.9 KiB
Python

# Copyright (c) 2014 Rackspace Hosting
# 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.
from designate.objects import base
class Record(base.DictObjectMixin, base.PersistentObjectMixin,
base.DesignateObject):
# TODO(kiall): `hash` is an implementation detail of our SQLA driver,
# so we should remove it.
FIELDS = {
'shard': {
'schema': {
'type': 'integer',
'minimum': 0,
'maximum': 4095
}
},
'data': {},
'zone_id': {
'schema': {
'type': 'string',
'format': 'uuid',
},
},
'managed': {
'schema': {
'type': 'boolean'
}
},
'managed_resource_type': {
'schema': {
'type': ['string', 'null'],
'maxLength': 160
},
},
'managed_resource_id': {
'schema': {
'type': ['string', 'null'],
'format': 'uuid',
},
},
'managed_plugin_name': {
'schema': {
'type': ['string', 'null'],
'maxLength': 160
},
},
'managed_plugin_type': {
'schema': {
'type': ['string', 'null'],
'maxLength': 160
},
},
'hash': {
'schema': {
'type': 'string',
'maxLength': 32
},
},
'description': {
'schema': {
'type': ['string', 'null'],
'maxLength': 160
},
},
'status': {
'schema': {
'type': 'string',
'enum': ['ACTIVE', 'PENDING', 'ERROR'],
},
},
'tenant_id': {
'schema': {
'type': 'string',
},
},
'recordset_id': {
'schema': {
'type': 'string',
'format': 'uuid',
},
},
'managed_tenant_id': {
'schema': {
'type': ['string', 'null'],
}
},
'managed_resource_region': {
'schema': {
'type': ['string', 'null'],
'maxLength': 160
},
},
'managed_extra': {
'schema': {
'type': ['string', 'null'],
'maxLength': 160
},
},
'action': {
'schema': {
'type': 'string',
'enum': ['CREATE', 'DELETE', 'UPDATE', 'NONE'],
},
},
'serial': {
'schema': {
'type': 'integer',
'minimum': 1,
'maximum': 4294967295,
},
},
}
@classmethod
def get_recordset_schema_changes(cls):
# This is to allow record types to override the validation on a
# recordset
return {}
STRING_KEYS = [
'id', 'recordset_id', 'data'
]
def __str__(self):
record = self.to_dict()
record['data'] = record['data'][:35]
return (self._make_obj_str(self.STRING_KEYS)
% record)
class RecordList(base.ListObjectMixin, base.DesignateObject):
LIST_ITEM_TYPE = Record