json.schema.entity.services.connections.mlmodel.vertexaiConnection.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/entity/services/connections/mlmodel/vertexaiConnection.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "VertexAIConnection",
"description": "Google VertexAI Connection Config",
"type": "object",
"javaType": "org.openmetadata.schema.services.connections.mlmodel.VertexAIConnection",
"definitions": {
"vertexAIType": {
"description": "Service type.",
"type": "string",
"enum": ["VertexAI"],
"default": "VertexAI"
}
},
"properties": {
"type": {
"title": "Service Type",
"description": "Service Type",
"$ref": "#/definitions/vertexAIType",
"default": "VertexAI"
},
"credentials": {
"title": "GCP Credentials",
"description": "GCP Credentials",
"$ref": "../../../../security/credentials/gcpCredentials.json"
},
"location": {
"title": "Project location",
"description": "location/region of google cloud project",
"type": "string"
}
},
"additionalProperties": false,
"required": [
"credentials", "location"
]
}