Summary
Get the list of available adapter model types.
Description
Get the list of available adapter model types in the current IAP.
Route
GET /adapter-models/types
Roles
admin
apiread
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
queryOptions |
object |
yes |
Options for query parameters. |
Copied to Clipboard
{
"queryOptions": {
"contains": "profile1",
"equals": "profile1",
"startsWith": "profile",
"order": 1
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"queryOptions": {
"title": "queryOptions",
"type": "object",
"properties": {
"contains": {
"type": "string",
"examples": [
"profile1"
]
},
"equals": {
"type": "string",
"examples": [
"profile1"
]
},
"startsWith": {
"type": "string",
"examples": [
"profile"
]
},
"order": {
"$ref": "common-schema#/definitions/order"
}
}
}
},
"required": [
"queryOptions"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
adapterModels |
object |
Contains an array of adapter model types and the total. |
Copied to Clipboard
{
"adapterModels": [
"local_aaa",
"local_aaa",
"local_aaa",
"redis",
"redis"
],
"total": 1
}
Copied to Clipboard
{
"title": "adapterModels",
"type": "object",
"required": [
"adapterModels",
"total"
],
"properties": {
"adapterModels": {
"type": "array",
"items": {
"type": "string",
"examples": [
"local_aaa",
"redis"
]
}
},
"total": {
"$ref": "common-schema#/definitions/total"
}
}
}