karbor/karbor/services/protection/protection_plugins/server/server_plugin_schemas.py

67 lines
2.0 KiB
Python

# 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.
OPTIONS_SCHEMA = {
"title": "Server Protection Options",
"type": "object",
"properties": {},
"required": []
}
RESTORE_SCHEMA = {
"title": "Server Protection Restore",
"type": "object",
"properties": {
"restore_name": {
"type": "string",
"title": "Restore Server Name",
"description": "The name of the restore server",
},
"restore_net_id": {
"type": "string",
"title": "Restore Server Net Id",
"description": "The net id of the restore server"
},
"restore_flavor_id": {
"type": "string",
"title": "Restore Server Flavor Id",
"description": "The flavor id of the restore server"
}
},
"required": ["restore_name"]
}
VERIFY_SCHEMA = {
"title": "Server Protection Verify",
"type": "object",
"properties": {}
}
# TODO(luobin)
SAVED_INFO_SCHEMA = {
"title": "Server Protection Saved Info",
"type": "object",
"properties": {
"attach_metadata": {
"type": "object",
"title": "Attached Volume Metadata",
"description": "The devices of attached volumes"
},
"snapshot_metadata": {
"type": "object",
"title": "Snapshot Metadata",
"description": "The metadata of snapshot"
},
},
"required": ["attached_metadata", "snapshot_metadata"]
}