15d55e7601
Shard turned out to be a quite overloaded/confusing term to use here, although correct. We decided to rename our shard feature to pool. P.S: I swear I didn't use sed O.O Change-Id: Ic54f29a4da7d7690c9c9210b74876b96f0ae0eac
61 lines
1.8 KiB
Python
61 lines
1.8 KiB
Python
# Copyright (c) 2013 Rackspace Hosting, Inc.
|
|
#
|
|
# 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.
|
|
|
|
"""pools: JSON schema for marconi-queues pools resources."""
|
|
|
|
# NOTE(cpp-cabrera): options can be anything. These will be unique to
|
|
# each storage driver, so we don't perform any further validation at
|
|
# the transport layer.
|
|
patch_options = {
|
|
'type': 'object', 'properties': {
|
|
'options': {
|
|
'type': 'object'
|
|
}
|
|
}
|
|
}
|
|
|
|
# NOTE(cpp-cabrera): a string valid for use in a URI
|
|
# TODO(cpp-cabrera): perhaps validate this further using jsonschema's
|
|
# uri validator as per rfc3987
|
|
patch_uri = {
|
|
'type': 'object', 'properties': {
|
|
'uri': {
|
|
'type': 'string'
|
|
},
|
|
'additionalProperties': False
|
|
}
|
|
}
|
|
|
|
patch_weight = {
|
|
'type': 'object', 'properties': {
|
|
'weight': {
|
|
'type': 'integer', 'minimum': 0, 'maximum': 2**32 - 1
|
|
},
|
|
'additionalProperties': False
|
|
}
|
|
}
|
|
|
|
create = {
|
|
'type': 'object', 'properties': {
|
|
'weight': patch_weight['properties']['weight'],
|
|
'uri': patch_uri['properties']['uri'],
|
|
'options': patch_options['properties']['options']
|
|
},
|
|
# NOTE(cpp-cabrera): options need not be present. Storage drivers
|
|
# must provide reasonable defaults.
|
|
'required': ['uri', 'weight'],
|
|
'additionalProperties': False
|
|
}
|