@itentialopensource/adapter-openstack_glance
Version:
This adapter integrates with system described as: Openstack Image (Glance) Service
136 lines • 4.08 kB
JSON
{
"$id": "schema.json",
"type": "object",
"schema": "http://json-schema.org/draft-07/schema#",
"translate": true,
"dynamicfields": true,
"properties": {
"ph_request_type": {
"type": "string",
"description": "type of request (internal to adapter)",
"default": "createImage",
"enum": [
"createImage",
"listImages",
"showImage",
"updateImage",
"deleteImage",
"showTasksAssociatedWithImage",
"deactivateImage",
"reactivateImage"
],
"external_name": "ph_request_type"
},
"protectedParam": {
"type": "boolean",
"description": "Filters the response by the ‘protected’ image property. A valid value is\none of ‘true’, ‘false’ (must be all lowercase). Any other value will\nresult in a 400 response.",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "protected"
},
"osHidden": {
"type": "boolean",
"description": "When true, filters the response to display only “hidden” images. By\ndefault, “hidden” images are not included in the image-list response.\n(Since Image API v2.7)",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "os_hidden"
},
"memberStatus": {
"type": "string",
"description": "Filters the response by a member status. A valid value is accepted,\npending, rejected, or all. Default is accepted.",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "member_status"
},
"sizeMax": {
"type": "string",
"description": "Filters the response by a maximum image size, in\nbytes.",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "size_max"
},
"sizeMin": {
"type": "string",
"description": "Filters the response by a minimum image size, in\nbytes.",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "size_min"
},
"createdAt": {
"type": "string",
"description": "Specify a comparison filter based on the date and time when the resource\nwas created. (See Time Comparison Filters).",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "created_at"
},
"updatedAt": {
"type": "string",
"description": "Specify a comparison filter based on the date and time when the resource\nwas most recently modified. (See Time Comparison Filters).",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "updated_at"
},
"sortDir": {
"type": "string",
"description": "Sorts the response by a set of one or more sort\ndirection and attribute (sort_key) combinations. A valid value\nfor the sort direction is asc (ascending) or desc\n(descendi...(description truncated)",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "sort_dir"
},
"sortKey": {
"type": "string",
"description": "Sorts the response by an attribute, such as\nname, id, or updated_at. Default is created_at.\nThe API uses the natural sorting direction of the sort_key\nimage attribute.",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "sort_key"
},
"imageId": {
"type": "string",
"description": "The UUID of the image.",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "image_id"
}
},
"definitions": {}
}