json.schema.entity.services.connections.storage.gcsConnection.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/entity/services/connections/storage/gcsConnection.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "GCS Connection",
"description": "GCS Connection.",
"type": "object",
"javaType": "org.openmetadata.schema.services.connections.storage.GCSConnection",
"definitions": {
"gcsType": {
"description": "Gcs service type",
"type": "string",
"enum": ["GCS"],
"default": "GCS"
}
},
"properties": {
"type": {
"title": "Service Type",
"description": "Service Type",
"$ref": "#/definitions/gcsType",
"default": "GCS"
},
"credentials": {
"title": "GCP Credentials",
"description": "GCP Credentials",
"$ref": "../../../../security/credentials/gcpCredentials.json"
},
"bucketNames": {
"title": "Bucket Names",
"description": "Bucket Names of the data source.",
"type": "array",
"items": {
"type": "string"
},
"default": null
},
"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"
}
},
"additionalProperties": false,
"required": [
"credentials"
]
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy