@itentialopensource/adapter-openstack_neutron
Version:
This adapter integrates with system described as: Openstack Networking (Neutron) Service
85 lines • 2.3 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": "listFlavors",
"enum": [
"listFlavors",
"createFlavor",
"showFlavorDetails",
"updateFlavor",
"deleteFlavor",
"associateFlavorWithAServiceProfile",
"disassociateAFlavor",
"listServiceProfiles",
"createServiceProfile",
"showServiceProfileDetails",
"updateServiceProfile",
"deleteServiceProfile"
],
"external_name": "ph_request_type"
},
"serviceType": {
"type": "string",
"description": "Filter the flavor list result by the type of the flavor.",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "service_type"
},
"sortDir": {
"type": "string",
"description": "Sort direction. A valid value is asc (ascending) or desc\n(descending). You can specify multiple pairs of sort key and\nsort direction query parameters.",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "sort_dir"
},
"sortKey": {
"type": "string",
"description": "Sorts by a service profile attribute. You can specify multiple pairs of\nsort key and sort direction query parameters. The sort keys are limited to:",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "sort_key"
},
"flavorId": {
"type": "string",
"description": "The UUID of the flavor.",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "flavor_id"
},
"profileId": {
"type": "string",
"description": "The UUID of the service profile.",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "profile_id"
}
},
"definitions": {}
}