Summary
Import a new adapter.
Description
Import a new adapter in IAP.
Route
POST /adapters/import
Roles
admin
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
properties |
object |
yes |
An object containing all the adapter properties. |
Copied to Clipboard
{
"properties": {
"name": "",
"type": "Application",
"properties": {
"id": "Local AAA",
"type": "Redis",
"brokers": [
"aaa",
"aaa",
"aaa",
"aaa"
],
"groups": [
"pronghorn_admin"
]
},
"loggerProps": {
"log_max_files": 100,
"log_max_file_size": 1048576,
"log_level": "spam",
"log_directory": "/var/log/pronghorn",
"log_filename": "pronghorn.log",
"console_level": "debug",
"description": "Logging",
"log_timezone_offset": -5,
"metrics_filename": "metrics.log",
"metrics_max_files": 31,
"metrics_rotation_interval": "7d",
"metrics_rotation_size": "10M",
"syslog": {
"level": "error",
"facility": "local0",
"type": "5424",
"host": "localhost",
"port": 514,
"protocol": "udp4",
"pid": "process.pid",
"localhost": "",
"app_name": "",
"eol": ""
}
},
"isEncrypted": false,
"model": "",
"migrationVersion": 13343172
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"properties": {
"title": "properties",
"type": "object",
"properties": {
"loggerProps": {
"$ref": "services-schema#/properties/loggerProps"
},
"isEncrypted": {
"$ref": "services-schema#/properties/isEncrypted"
},
"model": {
"$ref": "services-schema#/properties/model"
},
"name": {
"$ref": "services-schema#/properties/name"
},
"type": {
"$ref": "services-schema#/properties/type"
},
"migrationVersion": {
"type": "integer",
"minimum": 0
},
"properties": {
"type": "object",
"properties": {
"id": {
"type": "string",
"title": "id",
"description": "The id for the service",
"const": {
"$data": "2/name"
},
"examples": [
"Local AAA"
]
},
"type": {
"type": "string",
"title": "Type",
"description": "The type of an adapter",
"examples": [
"local_aaa",
"Redis",
"Email"
]
},
"properties": {
"type": "object",
"properties": {}
},
"brokers": {
"type": "array",
"description": "Brokers which utilize this service",
"items": {
"type": "string",
"description": "Name of the broker",
"examples": [
"aaa"
]
}
},
"groups": {
"type": "array",
"description": "Groups which can use this service",
"items": {
"type": "string",
"description": "Name of the group",
"examples": [
"pronghorn_admin"
]
}
}
},
"required": [
"id",
"type"
]
}
},
"required": [
"name",
"type",
"properties"
]
}
},
"required": [
"properties"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
result |
object |
The result of the adapter import process. |
Copied to Clipboard
{
"status": "Created",
"message": "A sample success message",
"data": {
"metadata": {
"name": "@itentialopensource/cisco-nx-upgrade",
"version": "0.1.0",
"description": "A basic description",
"author": "Itential Artifacts",
"license": "Apache-2.0",
"repository": {
"type": "gitlab",
"hostname": "gitlab.com",
"path": "/itentialopensource/pre-built-automations"
},
"keywords": [
"Itential",
"Itential",
"Itential",
"Itential",
"Itential"
],
"gitlabId": 17866482
},
"manifest": {
"bundleName": "aggregateFunctions",
"artifacts": [
{
"id": "5e5ea3bd16da51d52b4a8f9f",
"name": "aggregateFunctions",
"type": "service-catalog",
"location": "/bundles/workflows/IAP Test Artifact Workflow.json"
}
],
"fingerprint": "5e84f892c5eab11ec2eee16d",
"createdEpoch": "1585772690392"
},
"bundles": [
{
"type": "golden-config"
}
],
"readme": "example of readme"
}
}