json.schema.entity.services.connections.database.prestoConnection.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/entity/services/connections/database/prestoConnection.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "PrestoConnection",
"description": "Presto Database Connection Config",
"type": "object",
"javaType": "org.openmetadata.schema.services.connections.database.PrestoConnection",
"definitions": {
"prestoType": {
"description": "Service type.",
"type": "string",
"enum": [
"Presto"
],
"default": "Presto"
},
"prestoScheme": {
"description": "SQLAlchemy driver scheme options.",
"type": "string",
"enum": [
"presto"
],
"default": "presto"
}
},
"properties": {
"type": {
"title": "Service Type",
"description": "Service Type",
"$ref": "#/definitions/prestoType",
"default": "Presto"
},
"scheme": {
"title": "Connection Scheme",
"description": "SQLAlchemy driver scheme options.",
"$ref": "#/definitions/prestoScheme",
"default": "presto"
},
"username": {
"title": "Username",
"description": "Username to connect to Presto. This user should have privileges to read all the metadata in Postgres.",
"type": "string"
},
"password": {
"title": "Password",
"description": "Password to connect to Presto.",
"type": "string",
"format": "password"
},
"hostPort": {
"title": "Host and Port",
"description": "Host and port of the Presto service.",
"type": "string"
},
"databaseSchema": {
"title": "Database Schema",
"description": "Database Schema of the data source. This is optional parameter, if you would like to restrict the metadata reading to a single schema. When left blank, OpenMetadata Ingestion attempts to scan all the schemas.",
"type": "string"
},
"catalog": {
"title": "Catalog",
"description": "Presto catalog",
"type": "string"
},
"protocol": {
"title": "Protocol",
"description": "Protocol ( Connection Argument ) to connect to Presto.",
"type": "string"
},
"verify": {
"title": "Verify",
"description": "Verify ( Connection Argument for SSL ) to connect to Presto.",
"type": "string"
},
"connectionOptions": {
"title": "Connection Options",
"$ref": "../connectionBasicType.json#/definitions/connectionOptions"
},
"connectionArguments": {
"title": "Connection Arguments",
"$ref": "../connectionBasicType.json#/definitions/connectionArguments"
},
"supportsMetadataExtraction": {
"title": "Supports Metadata Extraction",
"$ref": "../connectionBasicType.json#/definitions/supportsMetadataExtraction"
},
"supportsDBTExtraction": {
"$ref": "../connectionBasicType.json#/definitions/supportsDBTExtraction"
},
"supportsProfiler": {
"title": "Supports Profiler",
"$ref": "../connectionBasicType.json#/definitions/supportsProfiler"
},
"supportsDatabase": {
"title": "Supports Database",
"$ref": "../connectionBasicType.json#/definitions/supportsDatabase"
},
"supportsQueryComment": {
"title": "Supports Query Comment",
"$ref": "../connectionBasicType.json#/definitions/supportsQueryComment"
},
"sampleDataStorageConfig": {
"title": "Storage Config for Sample Data",
"$ref": "../connectionBasicType.json#/definitions/sampleDataStorageConfig"
}
},
"additionalProperties": false,
"required": [
"hostPort",
"username"
]
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy