Hostname (HostnameGenerator)
The Hostname generator does not support linking. It can be either self-consistent or consistent with another column. You cannot configure differential privacy.
There is no generator-specific configuration.
{
"presetId": "string",
"generatorId": "HostnameGenerator",
"schema": "string",
"table": "string",
"column": "string",
"dataType": "string" //MongoDB only
"metadata": {
"isConsistent": boolean,
"consistencyColumn": "string"
},
"encryptionProcessor": "x-on", //To use configured Tonic data encryption
"customValueProcessor": "string" //If custom value processor assigned
}
In the following example replacement for the Hostname generator, consistency is disabled.
{
"name": "hostname",
"schema": "public",
"table": "events",
"links": [
{
"presetId": "HostnameGenerator",
"generatorId": "HostnameGenerator",
"schema": "public",
"table": "events",
"column": "hostname",
"metadata": {
"isConsistent": false
}
}
]
}
Last modified 1mo ago