Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Latest commit

 

History

History
29 lines (21 loc) · 1.38 KB

SparkVersion.md

File metadata and controls

29 lines (21 loc) · 1.38 KB

SparkVersion

Properties

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]

Example

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]