Name |
Type |
Description |
Notes |
key |
str |
Databricks Runtime version key, for example `7.3.x-scala2.12`. The value that must be provided as the `spark_version` when creating a new cluster. The exact runtime version may change over time for a “wildcard” version (that is, `7.3.x-scala2.12` is a “wildcard” version) with minor bug fixes. |
[optional] |
name |
str |
A descriptive name for the runtime version, for example “Databricks Runtime 7.3 LTS”. |
[optional] |
from databricks_jobs.models.spark_version import SparkVersion
# TODO update the JSON string below
json = "{}"
# create an instance of SparkVersion from a JSON string
spark_version_instance = SparkVersion.from_json(json)
# print the JSON string representation of the object
print SparkVersion.to_json()
# convert the object into a dict
spark_version_dict = spark_version_instance.to_dict()
# create an instance of SparkVersion from a dict
spark_version_form_dict = spark_version.from_dict(spark_version_dict)
[Back to Model list] [Back to API list] [Back to README]