API cookbook: ASEDBConfig
This API cookbook recipe describes how to configure your SAP ASE database using the Delphix Engine API.
CODE
{
"name":"ASEDBConfig",
"description":"A SAP ASE Database Config.",
"abstract": true,
"extends": {
"$ref": "/delphix-source-config.json"
},
"properties": {
"databaseName": {
"type": "string",
"description": "The name of the database.",
"create": "required",
"update": "optional",
"pattern": "^[a-zA-Z0-9_]+$",
"maxLength": 30
},
"user": {
"type": "string",
"description": "The username of the database user.",
"update": "optional",
"maxLength": 256
},
"credentials": {
"type": "object",
"description": "The password of the database user.",
"$ref": "/delphix-credential.json",
"update": "optional"
},
"repository": {
"type": "string",
"description": "The object reference of the source repository.",
"format": "objectReference",
"referenceTo": "/delphix-ase-instance.json",
"create": "required",
"update": "optional"
}
}
}