Databricks · Schema

GcpAttributes

AIAnalyticsApache SparkBig DataClean RoomsCloud ComputingDataData AnalyticsData EngineeringData GovernanceDelta LakeDelta SharingETLIdentity ManagementLakehouseMachine LearningMLflowModel ServingSecuritySQLUnity CatalogVector SearchVisualize

Properties

Name Type Description
use_preemptible_executors boolean
google_service_account string
availability string
View JSON Schema on GitHub

JSON Schema

databricks-gcpattributes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GcpAttributes",
  "title": "GcpAttributes",
  "type": "object",
  "properties": {
    "use_preemptible_executors": {
      "type": "boolean",
      "example": true
    },
    "google_service_account": {
      "type": "string",
      "example": "example_value"
    },
    "availability": {
      "type": "string",
      "enum": [
        "GCP_PREEMPTIBLE",
        "GCP_ON_DEMAND"
      ],
      "example": "GCP_PREEMPTIBLE"
    }
  }
}